This commit is contained in:
2025-06-27 16:02:00 +02:00
parent 96dbc38c3a
commit 012058b998
21 changed files with 1299 additions and 433 deletions

10
app.vue
View File

@ -1,7 +1,5 @@
<template>
<div
class="main bg-bg-light text-text-light dark:text-text-dark dark:bg-bg-dark"
>
<div class="main bg-bg-light text-text-light dark:text-text-dark dark:bg-bg-dark">
<UApp>
<NuxtLayout>
<NuxtPage />
@ -9,4 +7,8 @@
</UApp>
</div>
</template>
<script setup lang="ts"></script>
<script setup lang="ts">
const userStore = useUserStore()
// await userStore.checkIsLogged()
</script>