mirror of https://github.com/sveltejs/svelte
parent
d7e01b7634
commit
9272440c8f
@ -0,0 +1,5 @@
|
||||
<script>
|
||||
let id = $props.id();
|
||||
</script>
|
||||
|
||||
{id}
|
||||
@ -1,5 +1,5 @@
|
||||
import { test } from '../../test';
|
||||
|
||||
export default test({
|
||||
html: 'c1'
|
||||
html: 'c1 c2'
|
||||
});
|
||||
|
||||
@ -1,5 +1,7 @@
|
||||
<script>
|
||||
import Nested from './Nested.svelte';
|
||||
let id = $props.id();
|
||||
</script>
|
||||
|
||||
{id}
|
||||
{id}
|
||||
<Nested />
|
||||
Loading…
Reference in new issue