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/names-deconflicted-nested/main.html

8 lines
111 B

{#each array as row, i}
<div>
{#each row as cell, j}
<span>[ {i}, {j} ]</span>
{/each}
</div>
{/each}