mirror of
https://github.com/Kisechan/Mainpage.git
synced 2025-07-09 22:57:17 +00:00
32 lines
667 B
JavaScript
32 lines
667 B
JavaScript
import { createRouter, createWebHistory } from "vue-router";
|
|
|
|
const routes = [
|
|
{
|
|
path: "/",
|
|
name: "home",
|
|
component: () => import("@/views/HomeView.vue"),
|
|
meta: { hideFooter: true, title: "主页" },
|
|
},
|
|
{
|
|
path: "/links",
|
|
name: "links",
|
|
component: () => import("@/views/LinksView.vue"),
|
|
meta: { title: "友链" },
|
|
},
|
|
];
|
|
|
|
const router = createRouter({
|
|
history: createWebHistory(),
|
|
routes,
|
|
});
|
|
|
|
router.beforeEach((to, from, next) => {
|
|
const title = to.meta.title; // 获取路由元信息中的标题
|
|
if (title) {
|
|
document.title = "Kisechan | " + title; // 设置页面标题
|
|
}
|
|
next();
|
|
});
|
|
|
|
export default router;
|