From 8cdb97cc8deb54a10daa4ead830d94b7994a22f6 Mon Sep 17 00:00:00 2001 From: wjt <1797368093@qq.com> Date: 星期四, 15 八月 2024 09:17:46 +0800 Subject: [PATCH] 修改绑定事件 --- src/router/index.ts | 9 +++++++-- 1 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/router/index.ts b/src/router/index.ts index 1971ea6..7796cc6 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -1,6 +1,7 @@ import { createWebHistory, createRouter, RouteRecordRaw } from "vue-router"; /* Layout */ import Layout from "@/layout/index.vue"; +import path from "path"; /** * Note: 璺敱閰嶇疆椤� @@ -58,9 +59,13 @@ hidden: true, }, { + path: '/main', + component: () => import("@/views/main/indexMarge.vue"), + }, + { path: "", component: Layout, - redirect: "/index", + redirect: "/home", children: [ // { // path: "/index", @@ -161,7 +166,7 @@ ]; const router = createRouter({ - history: createWebHistory(), + history: createWebHistory("/sqys-web/"), routes: constantRoutes, scrollBehavior(to, from, savedPosition) { if (savedPosition) { -- Gitblit v1.9.1