index.ts 897 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. import { RouteRecordRaw, createRouter, createWebHistory } from 'vue-router'
  2. import shipTestRouter from "./ship-test";
  3. const routes = [
  4. {
  5. path: '/',
  6. component: () => import('@/views/index.vue'),
  7. },
  8. {
  9. path: '/mock-track',
  10. component: () => import('@/views/init-speed-track/index.vue'),
  11. },
  12. {
  13. path: '/track-status',
  14. component: () => import('@/views/track-status/index.vue'),
  15. },
  16. {
  17. path: '/auth',
  18. name: 'auth',
  19. component: () => import('@/views/auth.vue')
  20. },
  21. ...shipTestRouter,
  22. {
  23. path: '/element',
  24. component: () => import('@/views/element/index-ol.vue'),
  25. },
  26. {
  27. path: '/ship-playback',
  28. component: () => import('@/views/ship-playback/index.vue'),
  29. },
  30. ]
  31. const router = createRouter({
  32. history: createWebHistory(),
  33. routes,
  34. });
  35. export default router;