mirror of https://github.com/sveltejs/svelte
only create fallback content if no slot is provided - fixes #2354
parent
079a1ba276
commit
aa653558d0
@ -0,0 +1,7 @@
|
|||||||
|
<div>
|
||||||
|
<slot name="foo">
|
||||||
|
foo fallback
|
||||||
|
</slot>
|
||||||
|
|
||||||
|
<slot></slot>
|
||||||
|
</div>
|
@ -0,0 +1,4 @@
|
|||||||
|
<div>
|
||||||
|
<div slot="foo">foo override</div>
|
||||||
|
default
|
||||||
|
</div>
|
@ -0,0 +1,4 @@
|
|||||||
|
<div>
|
||||||
|
<div slot="foo">foo override</div>
|
||||||
|
default
|
||||||
|
</div>
|
@ -0,0 +1,11 @@
|
|||||||
|
<script>
|
||||||
|
import Nested from './Nested.svelte'
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<Nested>
|
||||||
|
<div slot="foo">
|
||||||
|
foo override
|
||||||
|
</div>
|
||||||
|
|
||||||
|
default
|
||||||
|
</Nested>
|
Loading…
Reference in new issue