mirror of https://github.com/sveltejs/svelte
parent
8e5c7ed21e
commit
d2dce30cdc
@ -0,0 +1 @@
|
|||||||
|
One
|
@ -0,0 +1 @@
|
|||||||
|
Two
|
@ -0,0 +1,3 @@
|
|||||||
|
export default {
|
||||||
|
html: `OneTwo`
|
||||||
|
};
|
@ -0,0 +1,10 @@
|
|||||||
|
<RenamedComponentOne/><RenamedComponentTwo/>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import ComponentOne from './ComponentOne.html';
|
||||||
|
import ComponentTwo from './ComponentTwo.html';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: { RenamedComponentOne: ComponentOne, RenamedComponentTwo: ComponentTwo }
|
||||||
|
};
|
||||||
|
</script>
|
Loading…
Reference in new issue