You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/test/runtime/samples/binding-input-checkbox-deep.../main.svelte

18 lines
322 B

<script>
let todos = [
{ done: false, text: 'one' },
{ done: false, text: 'two' },
{ done: false, text: 'three' }
];
export function clear() {
todos = todos.filter(t => !t.done);
}
</script>
{#each todos as todo, i}
<div>
<input type=checkbox bind:checked={todo.done}>
<p>{todo.text}</p>
</div>
{/each}