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.
21 lines
401 B
TypeScript
21 lines
401 B
TypeScript
export default {
|
|
path: "/warning",
|
|
meta: {
|
|
title: "告警管理",
|
|
icon: "alarm",
|
|
showLink: false,
|
|
rank: 14
|
|
},
|
|
children: [
|
|
{
|
|
path: "/warning/list/index",
|
|
name: "WarningList",
|
|
component: () => import("@/views/warning/list/index.vue"),
|
|
meta: {
|
|
title: "告警列表",
|
|
roles: ["admin", "common"]
|
|
}
|
|
}
|
|
]
|
|
} as RouteConfigsTable;
|