修改路由
This commit is contained in:
parent
4721d579aa
commit
58bb55db34
|
@ -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
|
||||
}
|
||||
},
|
||||
]
|
||||
|
|
Loading…
Reference in New Issue