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.
72 lines
1.5 KiB
72 lines
1.5 KiB
import Vue from "vue"; |
|
import VueRouter from "vue-router"; |
|
import HomeView from "../views/HomeView.vue"; |
|
import Guidance from "../views/Guidance.vue"; |
|
import examination from "../views/examination.vue"; |
|
import ExamProject from "../views/examProject.vue"; |
|
import MyExam from "../views/myExam.vue"; |
|
|
|
Vue.use(VueRouter); |
|
|
|
const routes = [ |
|
{ |
|
path: "/", |
|
name: "home", |
|
component: HomeView, |
|
meta: { |
|
title: "选择医院", |
|
}, |
|
}, |
|
{ |
|
path: "/guidance", |
|
name: "guidance", |
|
component: Guidance, |
|
meta: { |
|
title: "预约须知", |
|
}, |
|
}, |
|
{ |
|
path: "/examination", |
|
name: "examination", |
|
component: examination, |
|
meta: { |
|
title: "体检项目", |
|
}, |
|
}, |
|
{ |
|
path: "/examProject", |
|
name: "ExamProject", |
|
component: ExamProject, |
|
meta: { |
|
title: "预约项目", |
|
}, |
|
}, |
|
{ |
|
path: "/myExam", |
|
name: "MyExam", |
|
component: MyExam, |
|
meta: { |
|
title: "我的预约", |
|
}, |
|
}, |
|
{ |
|
path: "/about", |
|
name: "about", |
|
// route level code-splitting |
|
// this generates a separate chunk (about.[hash].js) for this route |
|
// which is lazy-loaded when the route is visited. |
|
component: () => |
|
import(/* webpackChunkName: "about" */ "../views/AboutView.vue"), |
|
}, |
|
]; |
|
|
|
const router = new VueRouter({ |
|
routes, |
|
}); |
|
router.beforeEach((to, from, next) => { |
|
// to.meta.title |
|
// ? (document.title = to.meta.title) |
|
// : (document.title = "体检预约"); |
|
next(); |
|
}); |
|
export default router;
|
|
|