mirror of https://github.com/sveltejs/svelte
12 lines
141 B
12 lines
141 B
8 years ago
|
<span>level 2</span>
|
||
|
{{yield}}
|
||
|
|
||
|
<script>
|
||
|
import Level3 from './Level3.html';
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
Level3
|
||
|
}
|
||
|
};
|
||
|
</script>
|