svelte/test/runtime/samples/each-block-keyed/main-v2.html

4 lines
77 B

{#each todos as todo, i (todo.id)}
<p>{i+1}: {todo.description}</p>
{/each}