[Client] Some optimizations

This commit is contained in:
syuilo
2018-11-13 23:06:31 +09:00
parent 0dcb527bf3
commit a63ec05e41
7 changed files with 17 additions and 11 deletions

View File

@@ -153,7 +153,7 @@ init((launch) => {
{ path: '/tags/:tag', component: MkTag },
{ path: '/share', component: MkShare },
{ path: '/reversi/:game?', name: 'reversi', component: MkReversi },
{ path: '/@:user', component: MkUser },
{ path: '/@:user', component: () => import('./views/pages/user.vue').then(m => m.default) },
{ path: '/@:user/followers', component: MkFollowers },
{ path: '/@:user/following', component: MkFollowing },
{ path: '/notes/:note', component: MkNote },