You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
535 B
TypeScript
24 lines
535 B
TypeScript
1 year ago
|
export default {
|
||
|
path: "/systemManagement",
|
||
|
redirect: "/systemManagement/accountManagement",
|
||
|
meta: {
|
||
|
title: "系统管理",
|
||
|
icon: 3,
|
||
|
rank: 15
|
||
|
},
|
||
|
children: [
|
||
|
{
|
||
|
path: "/systemManagement/accountManagement",
|
||
|
name: "systemManagement",
|
||
|
component: () =>
|
||
|
import("@/views/systemManagement/accountManagement/index.vue"),
|
||
|
meta: {
|
||
|
title: "账号管理",
|
||
|
showLink: true,
|
||
|
showParent: true,
|
||
|
roles: ["admin", "common"]
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
} as RouteConfigsTable;
|