Initial commit
This commit is contained in:
commit
952cee5fb7
70 changed files with 23253 additions and 0 deletions
14
app/app.vue
Normal file
14
app/app.vue
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<template>
|
||||
<NuxtLayout>
|
||||
<NuxtPage />
|
||||
</NuxtLayout>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
// Initialize auth on app mount
|
||||
const { fetchUser } = useAuth()
|
||||
|
||||
onMounted(async () => {
|
||||
await fetchUser()
|
||||
})
|
||||
</script>
|
||||
Loading…
Add table
Add a link
Reference in a new issue