ZhangXianQiang
2024-06-13 6c34d8df858b0c795dd06da0962c22f9d1c40bd2
src/router/index.js
@@ -1,11 +1,11 @@
import { createMemoryHistory, createRouter } from 'vue-router';
import { createWebHashHistory, createRouter } from 'vue-router';
import Layout from '@/layout/index.vue';
const routes = [
  {
    path: '/',
    redirect: '/exam'
    redirect: '/index'
  },
  {
@@ -24,7 +24,16 @@
      },
    ]
  },
  // 在线培训
  {
    path: '/train',
    component: () => import('@/views/train/index.vue'),
  },
  // 会议
  {
    path: '/meet',
    component: () => import('@/views/meet/index.vue'),
  },
  // 考试列表
  {
    path: '/exam-list',
@@ -44,7 +53,7 @@
];
const router = createRouter({
  history: createMemoryHistory(),
  history: createWebHashHistory(),
  routes,
});