mirror of
https://github.com/sveltejs/svelte.git
synced 2024-12-01 17:30:59 +01:00
18 lines
199 B
HTML
18 lines
199 B
HTML
<div>
|
|
<Widget>{{data}}</Widget>
|
|
</div>
|
|
|
|
<script>
|
|
import Widget from './Widget.html';
|
|
|
|
export default {
|
|
components: { Widget },
|
|
|
|
data () {
|
|
return {
|
|
data: 'Hello'
|
|
};
|
|
}
|
|
};
|
|
</script>
|