new task view by id

This commit is contained in:
Julien Calixte
2023-04-09 11:02:38 +02:00
parent b8cad131b8
commit 682e02234d

View File

@@ -18,6 +18,12 @@ const router = createRouter({
path: '/new-task',
name: 'new-task',
component: () => import('../views/task/NewTask.vue')
},
{
path: '/task/:id',
name: 'task-view',
props: true,
component: () => import('../views/task/TaskView.vue')
}
]
})