feat(router): 添加根路径重定向到首页的路由配置

添加根路径("/")的重定向配置,使其自动跳转到首页("/home"),并设置该路由不在菜单中显示
This commit is contained in:
2026-01-10 19:37:39 +08:00
parent 40b2ae3126
commit d01117c6ea

View File

@@ -9,6 +9,12 @@ import AiChatView from "../views/ai/AiChatView.vue";
* 路由配置
*/
export const routes: Array<RouteRecordRaw> = [
{
path: "/",
name: "root",
redirect: "/home",
meta: { hideInMenu: true },
},
{
path: "/home",
name: "HomeView",