修改路由

This commit is contained in:
Cool 2023-11-14 19:15:06 +08:00
parent 4721d579aa
commit 58bb55db34
1 changed files with 8 additions and 6 deletions

View File

@ -10,21 +10,23 @@ const routes = [
path: "/",
name: "LayoutView",
component: LayoutView,
//重定向到home
redirect: "/home",
children: [
{
path: 'home',
name: 'home',
component: HomeView,
meta: {
isLogin: false
isLogin: true
},
children: [
{
path: "/params",
name: "paramsview",
component: () => import("../views/main/ParamsView.vue"),
path: "/index",
name: "Index",
component: () => import("../views/main/Index.vue"),
meta: {
isLogin: false
isLogin: true
}
},
{
@ -32,7 +34,7 @@ const routes = [
name: "TableDemo",
component: TableDemo,
meta: {
isLogin: false
isLogin: true
}
},
]