前端:
修复了已知问题 后端: 修复了已知问题
This commit is contained in:
@@ -35,7 +35,30 @@ const routes = [
|
||||
}
|
||||
]
|
||||
},
|
||||
{ path: '/contacts', name: 'userContacts', component: () => import('@/views/contact/ContactList.vue') },
|
||||
{
|
||||
path: '/contacts',
|
||||
name: 'userContacts',
|
||||
redirect: '/contacts/index',
|
||||
component: () => import('@/views/contact/ContactList.vue'),
|
||||
children: [
|
||||
{
|
||||
path: '/contacts/index',
|
||||
name: "contactDefault",
|
||||
component: () => import('@/views/contact/ContactDefault.vue')
|
||||
},
|
||||
{
|
||||
path: '/contacts/info/:id',
|
||||
name: 'contactInfo',
|
||||
component: () => import('@/views/contact/UserInfoContent.vue'),
|
||||
props: true
|
||||
},
|
||||
{
|
||||
path: '/contacts/requests',
|
||||
name: 'friendRequests',
|
||||
component: () => import('@/views/contact/FriendRequestList.vue')
|
||||
}
|
||||
]
|
||||
},
|
||||
{ path: '/settings', name: 'userSettings', component: () => import('@/views/settings/SettingMenu.vue') }
|
||||
],
|
||||
meta: {
|
||||
|
||||
Reference in New Issue
Block a user