liweilong
2020-12-25 57fedb8aa042c9f8bf5a3214b455144436850f1f
提交 | 用户 | 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