long
2021-04-08 d8f5a1fcb8632a9fb51cac9d72fb3bacaa41cbc2
提交 | 用户 | 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