16 lines
274 B
Vue
16 lines
274 B
Vue
<template>
|
|
<RouterView />
|
|
</template>
|
|
|
|
<script setup>
|
|
import { onMounted } from 'vue'
|
|
import { RouterView } from 'vue-router'
|
|
import { useAuth } from './composables/useAuth.js'
|
|
|
|
const { fetchUser } = useAuth()
|
|
|
|
onMounted(async () => {
|
|
await fetchUser()
|
|
})
|
|
</script>
|