vulpine-fe/src/App.vue
2023-12-20 22:26:25 +01:00

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>