提交 | 用户 | age | ||
5dfa4a | 1 | // 路由配置文件 |
J | 2 | import Layout from '@/layout' |
3 | ||
4 | export default { | |
5 | path: '/index', | |
6 | component: Layout, | |
7 | redirect: '/index/index', | |
8 | name: 'index', | |
9 | meta: { | |
10 | title: '短信管理', | |
11 | icon: 'coupon' | |
12 | }, | |
13 | children: [ | |
14 | { | |
15 | path: 'index', | |
16 | component: () => import('@/pages/index/index'), // Parent router-view | |
17 | name: 'index', | |
18 | meta: { title: '短信列表' } | |
19 | } | |
20 | ] | |
21 | } | |
22 |