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: a3cf44ad4cad6da670065cee917529c848e08f48 (plain)
1
2
3
4
5
6
7
8
export const routes = [
  {
    path: '/:id',
    name: 'work_item',
    component: () => import('../pages/work_item_root.vue'),
    props: true,
  },
];