daofu-gov-pc/src/router/modules/statistic.js

25 lines
598 B
JavaScript
Raw Normal View History

2024-01-26 09:02:58 +08:00
const Layout = () => import('@/layout/index.vue')
export default {
path: '/statistic',
component: Layout,
name: 'statistic',
redirect: '/statistic/s-index',
meta: {
auth: "statistic",
title: '统计分析',
2024-01-30 10:57:03 +08:00
icon: 'icon-statistic',
2024-01-26 09:02:58 +08:00
},
children: [
{
path: 's-index',
name: 's-index',
component: () => import('@/views/statistic/index.vue'),
meta: {
auth: "statistic.index",
title: '统计分析',
sidebar: false
}
},
]
}