1234567891011121314151617181920212223242526272829303132333435363738 |
- import { RouteRecordRaw, createRouter, createWebHistory } from 'vue-router'
- import shipTestRouter from "./ship-test";
- const routes = [
- {
- path: '/',
- component: () => import('@/views/index.vue'),
- },
- {
- path: '/mock-track',
- component: () => import('@/views/init-speed-track/index.vue'),
- },
- {
- path: '/track-status',
- component: () => import('@/views/track-status/index.vue'),
- },
- {
- path: '/auth',
- name: 'auth',
- component: () => import('@/views/auth.vue')
- },
- ...shipTestRouter,
- {
- path: '/element',
- component: () => import('@/views/element/index-ol.vue'),
- },
- {
- path: '/ship-playback',
- component: () => import('@/views/ship-playback/index.vue'),
- },
- ]
- const router = createRouter({
- history: createWebHistory(),
- routes,
- });
- export default router;
|