diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-02-16 06:50:58 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-02-16 06:50:58 +0900 |
| commit | c2b1bbeec5f48eb96ea50914d80581aab5119bf3 (patch) | |
| tree | d3719f6ced15710653cb535b513081e53e0ebc46 /src/client/app/desktop/script.ts | |
| parent | Add missing comma (diff) | |
| download | sharkey-c2b1bbeec5f48eb96ea50914d80581aab5119bf3.tar.gz sharkey-c2b1bbeec5f48eb96ea50914d80581aab5119bf3.tar.bz2 sharkey-c2b1bbeec5f48eb96ea50914d80581aab5119bf3.zip | |
Exploreページを実装
Diffstat (limited to 'src/client/app/desktop/script.ts')
| -rw-r--r-- | src/client/app/desktop/script.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/app/desktop/script.ts b/src/client/app/desktop/script.ts index fe13151159..1ec7de0cc5 100644 --- a/src/client/app/desktop/script.ts +++ b/src/client/app/desktop/script.ts @@ -135,6 +135,7 @@ init(async (launch, os) => { { path: '/search', component: () => import('./views/deck/deck.search-column.vue').then(m => m.default) }, { path: '/tags/:tag', name: 'tag', component: () => import('./views/deck/deck.hashtag-column.vue').then(m => m.default) }, { path: '/featured', component: () => import('./views/deck/deck.featured-column.vue').then(m => m.default) }, + { path: '/explore', component: () => import('./views/deck/deck.explore-column.vue').then(m => m.default) }, { path: '/i/favorites', component: () => import('./views/deck/deck.favorites-column.vue').then(m => m.default) } ]} : { path: '/', component: MkHome, children: [ @@ -144,6 +145,7 @@ init(async (launch, os) => { { path: '/search', component: () => import('./views/home/search.vue').then(m => m.default) }, { path: '/tags/:tag', name: 'tag', component: () => import('./views/home/tag.vue').then(m => m.default) }, { path: '/featured', component: () => import('./views/home/featured.vue').then(m => m.default) }, + { path: '/explore', component: () => import('../common/views/pages/explore.vue').then(m => m.default) }, { path: '/i/favorites', component: () => import('./views/home/favorites.vue').then(m => m.default) } ]}, { path: '/i/messaging/:user', component: MkMessagingRoom }, |