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} }, ],