mirror of https://github.com/sveltejs/svelte
fix #1960 typo
parent
dcad65b118
commit
f0b6be1355
@ -0,0 +1 @@
|
|||||||
|
<h1>Hello {user.name}!</h1>
|
@ -0,0 +1,9 @@
|
|||||||
|
export default {
|
||||||
|
props: {
|
||||||
|
currentUser: { name: 'world' }
|
||||||
|
},
|
||||||
|
|
||||||
|
html: `
|
||||||
|
<h1>Hello world!</h1>
|
||||||
|
`
|
||||||
|
};
|
@ -0,0 +1,6 @@
|
|||||||
|
<script>
|
||||||
|
import Nested from './Nested.html';
|
||||||
|
export let currentUser;
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<Nested user={currentUser}/>
|
Loading…
Reference in new issue