This commit is contained in:
sam 2023-12-19 17:40:02 +01:00
commit 69b4c9116b
Signed by: sam
GPG key ID: B4EF20DDE721CAA1
30 changed files with 3428 additions and 0 deletions

12
src/App.vue Normal file
View file

@ -0,0 +1,12 @@
<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>