vulpine-fe/src/App.vue

16 lines
310 B
Vue
Raw Normal View History

2023-12-19 17:40:02 +01:00
<script setup lang="ts">
2023-12-20 22:26:25 +01:00
import "@fontsource/fira-sans/400.css";
import "@fontsource/fira-sans/700.css";
2023-12-19 17:40:02 +01:00
import { RouterView } from "vue-router";
</script>
<template>
<header class="m-8">awawawawa</header>
<Suspense>
<RouterView />
<template #fallback> Loading... </template>
</Suspense>
</template>