mirror of https://github.com/sveltejs/svelte
10 lines
105 B
10 lines
105 B
8 years ago
|
<Foo x/>
|
||
|
|
||
|
<script>
|
||
|
import Foo from './Foo.html';
|
||
|
|
||
|
export default {
|
||
|
components: { Foo }
|
||
|
};
|
||
|
</script>
|