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-else-in-if/main.svelte

14 lines
175 B

<script>
export let visible = true;
const empty = [];
</script>
{#if visible}
{#each empty as item}
<p>{item}</p>
{:else}
<p>nothing</p>
{/each}
<p>after</p>
{/if}