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/packages/svelte/tests/migrate/samples/shadowed-forwarded-slot/input.svelte

25 lines
340 B

{#if $$slots.label}
<slot name="label" />
{/if}
<MyInput>
<slot name="label" slot="label"/>
</MyInput>
<MyInput>
<div slot="label">
<MyComponent>
<div slot="label">
<slot name="label" />
</div>
</MyComponent>
</div>
</MyInput>
<MyInput let:args>
<slot/>
</MyInput>
<MyInput>
<div let:args>
<slot/>
</div>
</MyInput>