1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| export default {
| path: '/contacts',
| name: 'contacts',
| redirect: '/contacts/apply',
| component: () => import('@/views/contacts/layout'),
| children: [
| {
| path: '/contacts/apply',
| meta: {
| title: '我的联系人',
| needLogin: true,
| },
| component: () => import('@/views/contacts/apply'),
| },
| {
| path: '/contacts/friends',
| meta: {
| title: '我的好友',
| needLogin: true,
| },
| component: () => import('@/views/contacts/friends'),
| },
| ],
| }
|
|