singleQuestion.ts 316 B

12345678910111213
  1. import { RouteConfig } from 'vue-router'
  2. const routes: Array<RouteConfig> = [
  3. {
  4. path: '/singleQuestion/:questionId',
  5. name: 'singleQuestion',
  6. component: () =>
  7. import(
  8. /* webpackChunkName: "singleQuestion" */ '@/views/singleQuestion/SingleQuestion.vue'
  9. )
  10. }
  11. ]
  12. export default routes