mirror of https://github.com/sveltejs/svelte
parent
7a8c8fd577
commit
efe25555cf
@ -0,0 +1,5 @@
|
|||||||
|
<div>
|
||||||
|
<slot/>
|
||||||
|
<slot name='bar'/>
|
||||||
|
<slot name='foo'/>
|
||||||
|
</div>
|
@ -0,0 +1,10 @@
|
|||||||
|
export default {
|
||||||
|
solo: true,
|
||||||
|
html: `
|
||||||
|
<div>
|
||||||
|
<slot>Hello</slot>
|
||||||
|
<slot name='bar'><p slot='bar'>bar</p></slot>
|
||||||
|
<slot name='foo'><p slot='foo'>foo</p></slot>
|
||||||
|
</div>
|
||||||
|
`
|
||||||
|
};
|
@ -0,0 +1,16 @@
|
|||||||
|
<Nested>
|
||||||
|
Hello
|
||||||
|
|
||||||
|
<p slot='foo'>foo</p>
|
||||||
|
<p slot='bar'>bar</p>
|
||||||
|
</Nested>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Nested from './Nested.html';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
Nested
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
Loading…
Reference in new issue