diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-02-22 22:38:14 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-02-22 22:38:14 +0900 |
| commit | e651bd12c3a07436f1986b0634a508100a66ef85 (patch) | |
| tree | aa51ca17f1ea489be9c3a447b40d92ee3e25b255 /src/web/app/mobile/script.ts | |
| parent | wip (diff) | |
| download | sharkey-e651bd12c3a07436f1986b0634a508100a66ef85.tar.gz sharkey-e651bd12c3a07436f1986b0634a508100a66ef85.tar.bz2 sharkey-e651bd12c3a07436f1986b0634a508100a66ef85.zip | |
wip
Diffstat (limited to 'src/web/app/mobile/script.ts')
| -rw-r--r-- | src/web/app/mobile/script.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/web/app/mobile/script.ts b/src/web/app/mobile/script.ts index 6e69b3ed32..fe73155c7c 100644 --- a/src/web/app/mobile/script.ts +++ b/src/web/app/mobile/script.ts @@ -26,6 +26,8 @@ import MkPost from './views/pages/post.vue'; import MkSearch from './views/pages/search.vue'; import MkFollowers from './views/pages/followers.vue'; import MkFollowing from './views/pages/following.vue'; +import MkSettings from './views/pages/settings.vue'; +import MkProfileSetting from './views/pages/profile-setting.vue'; /** * init @@ -54,6 +56,8 @@ init((launch) => { app.$router.addRoutes([ { path: '/', name: 'index', component: MkIndex }, { path: '/signup', name: 'signup', component: MkSignup }, + { path: '/i/settings', component: MkSettings }, + { path: '/i/settings/profile', component: MkProfileSetting }, { path: '/i/notifications', component: MkNotifications }, { path: '/i/messaging', component: MkMessaging }, { path: '/i/messaging/:username', component: MkMessagingRoom }, |