Skip to content

Commit

Permalink
修复页面刷新问题
Browse files Browse the repository at this point in the history
  • Loading branch information
gzydong committed Aug 5, 2021
1 parent f9579f7 commit b50766f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/router/contacts.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,23 @@ export default {
path: '/contacts/apply',
meta: {
title: '我的联系人',
needLogin: false,
needLogin: true,
},
component: () => import('@/views/contacts/apply'),
},
{
path: '/contacts/friends',
meta: {
title: '我的好友',
needLogin: false,
needLogin: true,
},
component: () => import('@/views/contacts/friends'),
},
{
path: '/contacts/groups',
meta: {
title: '我的群组',
needLogin: false,
needLogin: true,
},
component: () => import('@/views/contacts/groups'),
},
Expand Down

0 comments on commit b50766f

Please sign in to comment.