mirror of https://github.com/sveltejs/svelte
11 lines
127 B
11 lines
127 B
8 years ago
|
<Level1 ref:l1 />
|
||
|
|
||
|
<script>
|
||
|
import Level1 from './Level1.html';
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
Level1
|
||
|
}
|
||
|
}
|
||
|
</script>
|