1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| // 路由配置文件
| import Layout from '@/layout'
|
| export default {
| path: '/op',
| component: Layout,
| children: [
| {
| path: '/op',
| component: () => import('@/pages/op/index'),
| name: 'op',
| meta: { title: '操作日志', icon: 'op' },
| auth: 'operation_see'
| }
| ]
| }
|
|