forked from FoundKeyGang/FoundKey
Fix #6819
This commit is contained in:
parent
027c021ac9
commit
a6985d7dc7
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ export const router = createRouter({
|
|||
{ path: '/channels', component: page('channels') },
|
||||
{ path: '/channels/new', component: page('channel-editor') },
|
||||
{ path: '/channels/:channelId/edit', component: page('channel-editor'), props: true },
|
||||
{ path: '/channels/:channelId', component: page('channel'), props: true },
|
||||
{ path: '/channels/:channelId', component: page('channel'), props: route => ({ channelId: route.params.channelId }) },
|
||||
{ path: '/my/notifications', component: page('notifications') },
|
||||
{ path: '/my/favorites', component: page('favorites') },
|
||||
{ path: '/my/messages', component: page('messages') },
|
||||
|
|
Loading…
Reference in a new issue