added dynamical import of components via vite
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
<script>
|
||||
import LitStatus from '$lib/LitStatus.svelte';
|
||||
import LitStatus from '$lib/components/LitStatus.svelte';
|
||||
import AuthSign from '$lib/AuthSig.svelte';
|
||||
import Wallet from '$lib/Wallet.svelte';
|
||||
import Send from '$lib/Send.svelte';
|
||||
@ -14,12 +14,17 @@
|
||||
{
|
||||
id: 2,
|
||||
componentName: 'Composite',
|
||||
name: 'Nested Composite 1',
|
||||
name: 'Nested Composite',
|
||||
components: [
|
||||
{
|
||||
id: 3,
|
||||
componentName: 'LitStatus',
|
||||
name: 'Leaf 2'
|
||||
name: 'LitStatus'
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
componentName: 'MessageInput',
|
||||
name: 'MessageInput'
|
||||
}
|
||||
]
|
||||
}
|
||||
|
Reference in New Issue
Block a user