This commit is contained in:
Veljko Tosic
2026-02-16 18:18:21 +01:00
parent c200847c17
commit 5d148db4da
17 changed files with 399 additions and 15 deletions

View File

@@ -1,8 +1,19 @@
<script setup lang="ts">
import { onMounted } from 'vue'
import { RouterView } from 'vue-router'
import AppTopBar from './components/AppTopBar.vue'
import { useAuthStore } from '@/stores/auth'
const auth = useAuthStore()
onMounted(() => {
auth.initialize()
})
</script>
<template>
<AppTopBar />
<main class="container py-4">