Files
WAI_Project_UNIX/router/index.ts
2026-01-21 01:37:34 +08:00

13 lines
380 B
TypeScript

import { isNull, router, useStore } from "@/cool";
/**
* 路由跳转前的全局钩子(如修改 pages.json 后需重新编译项目以确保路由信息生效)
* @param to 跳转页
* @param from 当前页
* @param next 跳转函数
*/
// 全局路由拦截 - 已移除强制登录逻辑,支持游客模式浏览
router.beforeEach((to, from, next) => {
next();
});