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