summaryrefslogtreecommitdiff
path: root/src/client/app/desktop/script.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-08-25 12:28:05 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-08-25 12:28:05 +0900
commit47a5f3bc67adb4e95f027e5aa2d14b5a8bb6c697 (patch)
tree16c4249b40bc8451ca566a856d68f55e16a87a7b /src/client/app/desktop/script.ts
parent:v: (diff)
downloadsharkey-47a5f3bc67adb4e95f027e5aa2d14b5a8bb6c697.tar.gz
sharkey-47a5f3bc67adb4e95f027e5aa2d14b5a8bb6c697.tar.bz2
sharkey-47a5f3bc67adb4e95f027e5aa2d14b5a8bb6c697.zip
チャートコンポーネントを分離するなど
Diffstat (limited to 'src/client/app/desktop/script.ts')
-rw-r--r--src/client/app/desktop/script.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/app/desktop/script.ts b/src/client/app/desktop/script.ts
index 7f4a2d0b00..f0e8a42662 100644
--- a/src/client/app/desktop/script.ts
+++ b/src/client/app/desktop/script.ts
@@ -25,6 +25,7 @@ import updateBanner from './api/update-banner';
import MkIndex from './views/pages/index.vue';
import MkDeck from './views/pages/deck/deck.vue';
import MkAdmin from './views/pages/admin/admin.vue';
+import MkStats from './views/pages/stats/stats.vue';
import MkUser from './views/pages/user/user.vue';
import MkFavorites from './views/pages/favorites.vue';
import MkSelectDrive from './views/pages/selectdrive.vue';
@@ -57,6 +58,7 @@ init(async (launch) => {
{ path: '/', name: 'index', component: MkIndex },
{ path: '/deck', name: 'deck', component: MkDeck },
{ path: '/admin', name: 'admin', component: MkAdmin },
+ { path: '/stats', name: 'stats', component: MkStats },
{ path: '/i/customize-home', component: MkHomeCustomize },
{ path: '/i/favorites', component: MkFavorites },
{ path: '/i/messaging/:user', component: MkMessagingRoom },