diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-02-16 17:41:54 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-02-16 17:41:54 +0900 |
| commit | 9ed58a1b4eb32cb385ab50bd53d2f6cfec5c8f84 (patch) | |
| tree | ebed403e006d3f0cb3491b75c5b5e089ceb0812f /src/client/app/desktop/script.ts | |
| parent | 10.86.1 (diff) | |
| download | sharkey-9ed58a1b4eb32cb385ab50bd53d2f6cfec5c8f84.tar.gz sharkey-9ed58a1b4eb32cb385ab50bd53d2f6cfec5c8f84.tar.bz2 sharkey-9ed58a1b4eb32cb385ab50bd53d2f6cfec5c8f84.zip | |
:art:
Diffstat (limited to 'src/client/app/desktop/script.ts')
| -rw-r--r-- | src/client/app/desktop/script.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/app/desktop/script.ts b/src/client/app/desktop/script.ts index 4c5b29d1f4..9ff9ced2ea 100644 --- a/src/client/app/desktop/script.ts +++ b/src/client/app/desktop/script.ts @@ -152,8 +152,8 @@ init(async (launch, os) => { { path: '/notes/:note', name: 'note', component: () => import('./views/home/note.vue').then(m => m.default) }, { 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: '/featured', name: 'featured', component: () => import('./views/home/featured.vue').then(m => m.default) }, + { path: '/explore', name: '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 }, |