21 lines
377 B
Vue
21 lines
377 B
Vue
<script setup lang="ts">
|
|
import { onMounted } from 'vue'
|
|
import { useAuthStore } from '@/stores/auth'
|
|
|
|
const authStore = useAuthStore()
|
|
|
|
// Initialize authentication state on app mount
|
|
onMounted(() => {
|
|
authStore.initializeAuth()
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div id="app">
|
|
<RouterView />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
/* App-specific styles can go here */
|
|
</style>
|