You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/test/runtime/samples/component-nested-deep/Level2.html

12 lines
141 B

<span>level 2</span>
{{yield}}
<script>
import Level3 from './Level3.html';
export default {
components: {
Level3
}
};
</script>