From a63ec05e41e98f30c011f7efd3e67bc58f7a978c Mon Sep 17 00:00:00 2001 From: syuilo Date: Tue, 13 Nov 2018 23:06:31 +0900 Subject: [Client] Some optimizations --- src/client/app/mobile/script.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/client/app/mobile/script.ts') 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 }, -- cgit v1.2.3-freya