vulpine-fe/src/App.vue

13 lines
229 B
Vue
Raw Normal View History

2023-12-19 17:40:02 +01:00
<script setup lang="ts">
import { RouterView } from "vue-router";
</script>
<template>
<header class="m-8">awawawawa</header>
<Suspense>
<RouterView />
<template #fallback> Loading... </template>
</Suspense>
</template>