forked from kongfp/Tp_Web2.0
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
395 B
TypeScript
21 lines
395 B
TypeScript
export default {
|
|
path: "/statistics",
|
|
// redirect: "/error/403",
|
|
meta: {
|
|
icon: "lollipop",
|
|
title: "数据统计",
|
|
showLink: false,
|
|
rank: 4
|
|
},
|
|
children: [
|
|
{
|
|
path: "/statistics/index",
|
|
name: "StatisticsPage",
|
|
component: () => import("@/views/common/common.vue"),
|
|
meta: {
|
|
title: "数据统计"
|
|
}
|
|
}
|
|
]
|
|
} as RouteConfigsTable;
|