feat(router): 添加根路径重定向到首页的路由配置
添加根路径("/")的重定向配置,使其自动跳转到首页("/home"),并设置该路由不在菜单中显示
This commit is contained in:
@@ -9,6 +9,12 @@ import AiChatView from "../views/ai/AiChatView.vue";
|
|||||||
* 路由配置
|
* 路由配置
|
||||||
*/
|
*/
|
||||||
export const routes: Array<RouteRecordRaw> = [
|
export const routes: Array<RouteRecordRaw> = [
|
||||||
|
{
|
||||||
|
path: "/",
|
||||||
|
name: "root",
|
||||||
|
redirect: "/home",
|
||||||
|
meta: { hideInMenu: true },
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: "/home",
|
path: "/home",
|
||||||
name: "HomeView",
|
name: "HomeView",
|
||||||
|
|||||||
Reference in New Issue
Block a user