TaskSchema module
This commit is contained in:
@@ -27,16 +27,40 @@ const router = createRouter({
|
||||
},
|
||||
},
|
||||
{
|
||||
path: '/tasks/create',
|
||||
name: 'tasks-create',
|
||||
component: () => import('../views/TaskCreate.vue'),
|
||||
path: '/schemas',
|
||||
name: 'schemas',
|
||||
component: () => import('../views/SchemaAll.vue'),
|
||||
meta: {
|
||||
breadcrumb: [
|
||||
{ label: 'Tasks', to: '/tasks' },
|
||||
{ label: 'Schemas' },
|
||||
],
|
||||
},
|
||||
},
|
||||
{
|
||||
path: '/schemas/create',
|
||||
name: 'schemas-create',
|
||||
component: () => import('../views/SchemaCreate.vue'),
|
||||
meta: {
|
||||
breadcrumb: [
|
||||
{ label: 'Tasks', to: '/tasks' },
|
||||
{ label: 'Schemas', to: '/schemas' },
|
||||
{ label: 'Create' },
|
||||
],
|
||||
},
|
||||
},
|
||||
{
|
||||
path: '/schemas/:id(\\d+)',
|
||||
name: 'schemas-edit',
|
||||
component: () => import('../views/SchemaEdit.vue'),
|
||||
meta: {
|
||||
breadcrumb: [
|
||||
{ label: 'Tasks', to: '/tasks' },
|
||||
{ label: 'Schemas', to: '/schemas' },
|
||||
{ label: 'Edit' },
|
||||
],
|
||||
},
|
||||
},
|
||||
{
|
||||
path: '/tasks/:id(\\d+)',
|
||||
name: 'tasks-edit',
|
||||
|
||||
Reference in New Issue
Block a user