Welcome to mirror list, hosted at ThFree Co, Russian Federation.

routes.js « router « work_items « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 95772bbd026b6447d62b9394e9e8b3fed3b96a57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
export const routes = [
  {
    path: '/new',
    name: 'createWorkItem',
    component: () => import('../pages/create_work_item.vue'),
  },
  {
    path: '/:id',
    name: 'workItem',
    component: () => import('../pages/work_item_root.vue'),
    props: true,
  },
];