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/nested-transition-detach-each/main.svelte

22 lines
333 B

<script>
export let visible;
export let rows;
export let cols;
function foo(node) {
return {
duration: 100,
tick: t => node.foo = t
};
}
</script>
{#if visible}
{#each rows as row}
<div out:foo class="row">
{#each cols as col}
<div out:foo class="cell">{row}, {col}</div>
{/each}
</div>
{/each}
{/if}