You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

81 lines
1.9 KiB

import { createRouter, createWebHashHistory } from "vue-router";
import layout from "@/layout/index.vue";
const routerList: any = [
{
path: "/",
component: layout,
children: [
{
path: "",
name: "Home",
component: () => import("@/views/largeDataScreen/home.vue"),
},
{
path: "designRoute",
name: "DesignRoute",
component: () => import("@/views/designRoute/index.vue"),
},
{
path: "program",
name: "Program",
component: () => import("@/views/program/index.vue"),
},
{
path: "compiler",
name: "Compiler",
component: () => import("@/views/compiler/index.vue"),
},
{
path: "experimentalData",
name: "ExperimentalData",
component: () => import("@/views/experimentalData/index.vue"),
}
],
},
{
path: '/subjectTest', // 题目测试页面
name: 'SubjectTest',
component: () => import('@/views/subjectTest/index.vue'),
},
2 weeks ago
{
path: '/target', // 实验目标(简介)
name: 'Target',
component: () => import('@/views/target/index.vue'),
},
3 weeks ago
{
path: '/login',
name: 'Login',
component: () => import('@/layout/loginPage.vue')
},
2 weeks ago
{
path:'/studyPage',
name:'StudyPage',
component: () => import('@/layout/studyPage.vue')
},{
path: '/spacePage',
name: 'SpacePage',
component:()=>import('@/layout/spacePage.vue')
2 weeks ago
},{
path: '/knowledgePage',
name: 'KnowledgePage',
component: () => import('@/layout/knowledgePage.vue')
},{
path:'/passwordPage',
name:'PasswordPage',
component:()=>import('@/layout/passwordPage.vue')
}
3 weeks ago
];
const router: any = createRouter({
history: createWebHashHistory(),
routes: routerList,
scrollBehavior() {
return {
left: 0,
top: 0,
};
},
});
export default router;