mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-ui.git
synced 2025-12-19 09:25:53 +08:00
25 lines
531 B
JavaScript
25 lines
531 B
JavaScript
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'),
|
|
},
|
|
],
|
|
}
|