init the start of a record

This commit is contained in:
Julien Calixte
2023-04-10 16:16:08 +02:00
parent 531a05be26
commit a934c51a2e
7 changed files with 100 additions and 1 deletions

View File

@@ -24,6 +24,12 @@ export const router = createRouter({
name: 'task-view',
props: true,
component: () => import('../views/task/TaskView.vue')
},
{
path: '/task/:taskId/records/:recordId',
name: 'record-view',
props: true,
component: () => import('../views/record/RecordView.vue')
}
]
})