123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- const Router = VueRouter;
- import Layout from "@/layout";
- const routes = [
- //默认跳转到登录页
- {
- path: "/",
- redirect: "/loadingPage",
- },
- //loading
- {
- path: "/loadingPage",
- component: () => import("@/views/loadingPage/index"),
- hidden: true,
- },
- //登录页
- {
- path: "/login",
- component: () => import("@/views/login/index"),
- hidden: true,
- },
- //忘记密码
- {
- path: "/forget-password",
- component: () => import("@/views/login/forget-password"),
- hidden: true,
- noCache: true,
- },
- {
- path: "/404",
- component: () => import("@/views/error-page/404"),
- hidden: false,
- noCache: true,
- },
- {
- path: "*",
- redirect: "/404",
- },
- ];
- console.log(process.env.BASE_URL);
- const router = new Router({
- mode: "hash",
- base: process.env.BASE_URL,
- scrollBehavior: () => ({ y: 0 }),
- routes,
- });
- // 重写路由的push方法,主要是为了解决同一个路由路径重复点击报错
- const routerPush = Router.prototype.push;
- Router.prototype.push = function push(location) {
- return routerPush.call(this, location).catch((error) => error);
- };
- Vue.use(Router);
- export default router;
|