14 lines
209 B
Vue
14 lines
209 B
Vue
<template>
|
|
<NuxtLayout>
|
|
<NuxtPage />
|
|
</NuxtLayout>
|
|
</template>
|
|
|
|
<script setup>
|
|
// Initialize auth on app mount
|
|
const { fetchUser } = useAuth()
|
|
|
|
onMounted(async () => {
|
|
await fetchUser()
|
|
})
|
|
</script>
|