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-slot-nested-compo.../main.html

12 lines
180 B

<Outer>
<Inner>foo</Inner>
</Outer>
<script>
import Outer from './Outer.html';
import Inner from './Inner.html';
export default {
components: { Outer, Inner }
};
</script>