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

routes.js « comment_templates « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7687c6f335ac7e2216d01d4036da59fa72efad5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import IndexComponent from './pages/index.vue';

import EditComponent from './pages/edit.vue';

export default [
  {
    path: '/',
    component: IndexComponent,
  },
  {
    name: 'edit',
    path: '/:id',
    component: EditComponent,
  },
];