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/each-block-empty-outro/main.html

17 lines
191 B

{#if visible}
<div>
{#each empty as thing}
<Thing {thing}/>
{/each}
<p>text</p>
</div>
{/if}
<script>
export default {
components: {
Thing: './Thing.html'
}
};
</script>