mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-ui.git
synced 2025-12-20 01:45:53 +08:00
IM
This commit is contained in:
24
im/src/router/contacts.js
Normal file
24
im/src/router/contacts.js
Normal file
@@ -0,0 +1,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'),
|
||||
},
|
||||
],
|
||||
}
|
||||
Reference in New Issue
Block a user