15 lines
310 B
Vue
15 lines
310 B
Vue
<script setup lang="ts">
|
|
import "@fontsource/fira-sans/400.css";
|
|
import "@fontsource/fira-sans/700.css";
|
|
|
|
import { RouterView } from "vue-router";
|
|
</script>
|
|
|
|
<template>
|
|
<header class="m-8">awawawawa</header>
|
|
<Suspense>
|
|
<RouterView />
|
|
|
|
<template #fallback> Loading... </template>
|
|
</Suspense>
|
|
</template>
|