children117cl
2021-04-14 cf8a751fa16e30b13080bf0e7af2ff6c9df693a8
提交 | 用户 | 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