mirror of https://github.com/sveltejs/svelte
10 lines
106 B
10 lines
106 B
8 years ago
|
<h1>Hello {{name}}!</h1>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data: () => ({
|
||
|
name: 'world'
|
||
|
})
|
||
|
};
|
||
|
</script>
|