mirror of https://github.com/sveltejs/svelte
12 lines
180 B
12 lines
180 B
8 years ago
|
<Outer>
|
||
|
<Inner>foo</Inner>
|
||
|
</Outer>
|
||
|
|
||
|
<script>
|
||
|
import Outer from './Outer.html';
|
||
|
import Inner from './Inner.html';
|
||
|
|
||
|
export default {
|
||
|
components: { Outer, Inner }
|
||
|
};
|
||
|
</script>
|