mirror of https://github.com/sveltejs/svelte
parent
117082b039
commit
682f4a6513
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
"svelte": patch
|
||||||
|
---
|
||||||
|
|
||||||
|
fix: adjust scope parent for named slots
|
@ -0,0 +1 @@
|
|||||||
|
<slot name="inner" text="hello world" />
|
@ -0,0 +1,9 @@
|
|||||||
|
<script>
|
||||||
|
export let text;
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
{text}
|
||||||
|
<hr />
|
||||||
|
<slot name="footer" />
|
||||||
|
</div>
|
@ -0,0 +1,7 @@
|
|||||||
|
import { test } from '../../test';
|
||||||
|
|
||||||
|
export default test({
|
||||||
|
html: `
|
||||||
|
<div>hello world <hr> <div slot="footer">hello world</div></div>
|
||||||
|
`
|
||||||
|
});
|
@ -0,0 +1,12 @@
|
|||||||
|
<script>
|
||||||
|
import Nested from "./Nested.svelte"
|
||||||
|
import Nested2 from "./Nested2.svelte"
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<Nested>
|
||||||
|
<Nested2 slot="inner" let:text {text}>
|
||||||
|
<div slot="footer">
|
||||||
|
{text}
|
||||||
|
</div>
|
||||||
|
</Nested2>
|
||||||
|
</Nested>
|
Loading…
Reference in new issue