daofu-gov-pc/src/router/modules/statistic.js
2024-01-30 10:57:03 +08:00

25 lines
598 B
JavaScript

const Layout = () => import('@/layout/index.vue')
export default {
path: '/statistic',
component: Layout,
name: 'statistic',
redirect: '/statistic/s-index',
meta: {
auth: "statistic",
title: '统计分析',
icon: 'icon-statistic',
},
children: [
{
path: 's-index',
name: 's-index',
component: () => import('@/views/statistic/index.vue'),
meta: {
auth: "statistic.index",
title: '统计分析',
sidebar: false
}
},
]
}