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/component-dynamic-slot-8/Foo.svelte

12 lines
175 B

<script>
export let value;
</script>
<div>
<slot name="child" {value}>fallback {value * 2}</slot>
{#if $$slots.alert}
<hr>
<slot name="alert" />
{/if}
</div>