diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-02-22 05:16:38 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-02-22 05:16:38 +0900 |
| commit | 7f7fdbd678b020f147c18410f2d8b626ec02d27f (patch) | |
| tree | 9a84a042819f29e749fc26413f24147dea4070a1 /src/web/app/mobile/script.ts | |
| parent | wip (diff) | |
| download | misskey-7f7fdbd678b020f147c18410f2d8b626ec02d27f.tar.gz misskey-7f7fdbd678b020f147c18410f2d8b626ec02d27f.tar.bz2 misskey-7f7fdbd678b020f147c18410f2d8b626ec02d27f.zip | |
wip
Diffstat (limited to 'src/web/app/mobile/script.ts')
| -rw-r--r-- | src/web/app/mobile/script.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/web/app/mobile/script.ts b/src/web/app/mobile/script.ts index 29ca219258..a2f118b8f7 100644 --- a/src/web/app/mobile/script.ts +++ b/src/web/app/mobile/script.ts @@ -15,6 +15,7 @@ import post from './api/post'; import notify from './api/notify'; import MkIndex from './views/pages/index.vue'; +import MkSignup from './views/pages/signup.vue'; import MkUser from './views/pages/user.vue'; import MkSelectDrive from './views/pages/selectdrive.vue'; import MkDrive from './views/pages/drive.vue'; @@ -45,6 +46,7 @@ init((launch) => { // Routing app.$router.addRoutes([ { path: '/', name: 'index', component: MkIndex }, + { path: '/signup', name: 'signup', component: MkSignup }, { path: '/i/drive', component: MkDrive }, { path: '/i/drive/folder/:folder', component: MkDrive }, { path: '/selectdrive', component: MkSelectDrive }, |