first commit, created New.vue...

This commit is contained in:
Sockenklaus
2021-11-16 16:57:44 +01:00
parent bcbfa09edd
commit 8071e8ef91
2 changed files with 9 additions and 0 deletions

View File

@@ -30,6 +30,15 @@ const routes: Array<RouteRecordRaw> = [
requiresAdmin: true, requiresAdmin: true,
} }
}, },
{
path: '/employees/new',
name: 'Employees/New',
component: () => import('@/views/Employees/Details.vue'),
meta: {
requiresAuth: true,
requiresAdmin: true
}
},
{ {
path: '/employees/:id', path: '/employees/:id',
name: 'Employees/Details', name: 'Employees/Details',

View File