xiangpei
2025-06-29 71d679813e16e9565f686d633d77d7a551a42d7a
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'),
    },
  ],
}