debian-mirror-gitlab/app/assets/javascripts/work_items/router/routes.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
270 B
JavaScript
Raw Normal View History

2021-12-11 22:18:48 +05:30
export const routes = [
2022-01-26 12:08:38 +05:30
{
path: '/new',
name: 'createWorkItem',
component: () => import('../pages/create_work_item.vue'),
},
2021-12-11 22:18:48 +05:30
{
path: '/:id',
2022-01-26 12:08:38 +05:30
name: 'workItem',
2021-12-11 22:18:48 +05:30
component: () => import('../pages/work_item_root.vue'),
props: true,
},
];