From ee2fc42fff60cff48e78e2e236121b8244ddf915 Mon Sep 17 00:00:00 2001 From: Nell Date: Mon, 25 May 2026 10:19:31 +0200 Subject: [PATCH] init --- frontend/src/pages/admin/dashboard.vue | 11 +++++++++++ frontend/src/router/index.ts | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 frontend/src/pages/admin/dashboard.vue diff --git a/frontend/src/pages/admin/dashboard.vue b/frontend/src/pages/admin/dashboard.vue new file mode 100644 index 0000000..27324a8 --- /dev/null +++ b/frontend/src/pages/admin/dashboard.vue @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/frontend/src/router/index.ts b/frontend/src/router/index.ts index acf8314..9103b03 100644 --- a/frontend/src/router/index.ts +++ b/frontend/src/router/index.ts @@ -25,7 +25,7 @@ const router = createRouter({ { path: '/admin', name: 'admin-dashboard', - component: () => import('@/pages/admin/Dashboard.vue'), + component: () => import('@/pages/admin/dashboard.vue'), meta: {requiresAdmin: true} }, ],