kun-galgame-vue/src/router/index.ts

69 lines
1.7 KiB
TypeScript
Raw Normal View History

2023-05-02 09:44:23 +00:00
import LoginVue from "@/views/login/Login.vue";
2023-04-20 08:04:08 +00:00
import {
type RouteRecordRaw,
createRouter,
createWebHashHistory,
createWebHistory,
} from "vue-router";
/** 常驻路由 */
export const constantRoutes: RouteRecordRaw[] = [
2023-05-02 09:44:23 +00:00
// KUNGalgame 主页
{
name: "KUN",
path: "/",
component: () => import("@/views/Home/KUNGalgameMainPage.vue"),
},
// KUNgalgame 帖子详情页
2023-04-20 08:04:08 +00:00
{
2023-05-01 15:06:46 +00:00
name: "Topic",
2023-04-20 08:04:08 +00:00
path: "/topic",
2023-05-01 15:06:46 +00:00
// 路由懒加载
2023-04-20 15:34:48 +00:00
component: () => import("@/views/topic/KUNGalgameTopicPage.vue"),
},
2023-05-02 09:44:23 +00:00
// KUNGalgame 登陆页
2023-04-20 15:34:48 +00:00
{
2023-05-02 09:44:23 +00:00
name: "Login",
path: "/login",
component: () => import("@/views/login/Login.vue"),
},
// KUNGalgame 技术交流页
{
name: "Technology",
path: "/technology",
component: () => import("@/views/login/Login.vue"),
},
// KUNGalgame 帖子池页
{
name: "Pool",
path: "/pool",
component: () => import("@/views/login/Login.vue"),
2023-04-20 08:04:08 +00:00
},
];
const router = createRouter({
history:
import.meta.env.VITE_ROUTER_HISTORY === "hash"
? createWebHashHistory(import.meta.env.VITE_PUBLIC_PATH)
: createWebHistory(import.meta.env.VITE_PUBLIC_PATH),
routes: constantRoutes,
});
/** 重置路由 */
export function resetRouter() {
// 注意:所有动态路由路由必须带有 Name 属性,否则可能会不能完全重置干净
try {
router.getRoutes().forEach((route: { name: any; meta: any }) => {
const { name, meta } = route;
if (name && meta.roles?.length) {
router.hasRoute(name) && router.removeRoute(name);
}
});
} catch (error) {
// 强制刷新浏览器也行,只是交互体验不是很好
window.location.reload();
}
}
export default router;