home-lab/packages/Dashboard/src/App.vue
Geir Okkenhaug Jerstad a7660d0b8d testing claude code
2025-06-25 16:36:30 +02:00

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>