debian-mirror-gitlab/app/assets/javascripts/saved_replies/routes.js

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

16 lines
246 B
JavaScript
Raw Normal View History

2023-04-23 21:23:45 +05:30
import IndexComponent from './pages/index.vue';
2023-05-27 22:25:52 +05:30
import EditComponent from './pages/edit.vue';
2023-04-23 21:23:45 +05:30
export default [
{
path: '/',
component: IndexComponent,
},
2023-05-27 22:25:52 +05:30
{
name: 'edit',
path: '/:id',
component: EditComponent,
},
2023-04-23 21:23:45 +05:30
];