| 12345678910111213 |
- import { RouteConfig } from 'vue-router'
- const routes: Array<RouteConfig> = [
- {
- path: '/singleQuestion/:questionId',
- name: 'singleQuestion',
- component: () =>
- import(
- /* webpackChunkName: "singleQuestion" */ '@/views/singleQuestion/SingleQuestion.vue'
- )
- }
- ]
- export default routes
|