TaskSchema module

This commit is contained in:
Marek Lenczewski
2026-04-12 15:42:48 +02:00
parent 4e81cea831
commit 5198769de4
57 changed files with 3066 additions and 324 deletions

View File

@@ -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',