ZhangXianQiang
2024-06-06 558dece1afc4bf48f47528ed83a8cfd72eb00a38
src/router/index.js
@@ -7,6 +7,7 @@
    path: '/',
    redirect: '/index'
  },
  {
    path: '/',
    component: Layout,
@@ -23,7 +24,23 @@
      },
    ]
  },
  // 考试列表
  {
    path: '/exam-list',
    component: () => import('@/views/exam-list/index.vue'),
  },
  // 考试页面
  {
    path: '/exam',
    component: () => import('@/views/exam/index.vue'),
  },
  // 成绩单列表
  {
    path: '/grade-list',
    component: () => import('@/views/grade-list/index.vue'),
  },
];
const router = createRouter({