Continue frontend building

This commit is contained in:
2025-07-13 12:03:43 +02:00
parent 6faed0dbd4
commit 746f809d28
44 changed files with 2057 additions and 632 deletions

View File

@ -2,6 +2,7 @@ import { createRouter, createWebHistory } from 'vue-router'
import LoginPage from '@/views/LoginPage.vue'
import WorkspaceView from '@/views/WorkspaceView.vue'
import AuditView from '@/views/audit/AuditView.vue'
import { useAuthTokenStore } from '@/store/auth'
@ -12,6 +13,9 @@ const routes = [
name: 'clientList',
component: WorkspaceView,
meta: { requiresAuth: true },
},
{
path: '/audit', name: 'audit', component: AuditView, meta: { requiresAuth: true },
}
]