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.html

22 lines
321 B

{#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}
<script>
export default {
transitions: {
foo(node) {
return {
duration: 100,
tick: t => node.foo = t
};
}
}
};
</script>