diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-11-13 23:06:31 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-11-13 23:06:31 +0900 |
| commit | a63ec05e41e98f30c011f7efd3e67bc58f7a978c (patch) | |
| tree | 0939e10de1f70674c6aeee7c618daf473386097f /src/client/app/mobile/script.ts | |
| parent | [Client] Fix bug (diff) | |
| download | sharkey-a63ec05e41e98f30c011f7efd3e67bc58f7a978c.tar.gz sharkey-a63ec05e41e98f30c011f7efd3e67bc58f7a978c.tar.bz2 sharkey-a63ec05e41e98f30c011f7efd3e67bc58f7a978c.zip | |
[Client] Some optimizations
Diffstat (limited to 'src/client/app/mobile/script.ts')
| -rw-r--r-- | src/client/app/mobile/script.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/mobile/script.ts b/src/client/app/mobile/script.ts index 56b6d9d0cd..5622e233df 100644 --- a/src/client/app/mobile/script.ts +++ b/src/client/app/mobile/script.ts @@ -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 }, |