Conditional rendering
<template>
<label for="greet">Would you like me to greet the world?</label>
<input type="checkbox" id="greet" checked.bind="greet">
<div if.bind="greet">
Hello, World!
</div>
</template><template>
<label for="greet">Would you like me to greet the world?</label>
<input type="checkbox" id="greet" checked.bind="greet">
<div show.bind="greet">
Hello, World!
</div>
</template>Caching the view instance when condition changes
Last updated
Was this helpful?