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