mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-12 03:05:12 +00:00
13 lines
211 B
HTML
13 lines
211 B
HTML
<script>
|
|
import { onMount } from 'svelte';
|
|
|
|
export let Title;
|
|
|
|
onMount(() => {
|
|
import('./_components/Title.html').then(mod => {
|
|
Title = mod.default;
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<svelte:component this={Title}/> |