| 12345678910111213141516 |
- export default {
- path: '/information',
- name: 'information',
- component: () => import('@/page/information'),
- children: [{
- path: 'news',
- name: 'information_news',
- component: () => import('@/page/information/news')
- }, {
- path: 'news/:id',
- name: 'information_news_detil',
- component: () => import('@/page/information/news/details')
- }
- ]
- }
|