mirror of https://github.com/sveltejs/svelte
12 lines
140 B
12 lines
140 B
8 years ago
|
<div>
|
||
|
<Widget ref:widget/>
|
||
|
</div>
|
||
|
|
||
|
<script>
|
||
|
import Widget from './Widget.html';
|
||
|
|
||
|
export default {
|
||
|
components: { Widget }
|
||
|
};
|
||
|
</script>
|