diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-02-18 11:20:20 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-02-18 11:20:20 +0900 |
| commit | 07dccad5b1ae74b294bb40ab5643bc5d813eb6db (patch) | |
| tree | f21985dc21d13b6630b384252a1179ba88b12a93 /src/client/app/mobile/script.ts | |
| parent | Improve usability (diff) | |
| download | sharkey-07dccad5b1ae74b294bb40ab5643bc5d813eb6db.tar.gz sharkey-07dccad5b1ae74b294bb40ab5643bc5d813eb6db.tar.bz2 sharkey-07dccad5b1ae74b294bb40ab5643bc5d813eb6db.zip | |
Avoid dupulicated route name
Diffstat (limited to 'src/client/app/mobile/script.ts')
| -rw-r--r-- | src/client/app/mobile/script.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/mobile/script.ts b/src/client/app/mobile/script.ts index 9bec577d7b..fbe117c4ac 100644 --- a/src/client/app/mobile/script.ts +++ b/src/client/app/mobile/script.ts @@ -133,7 +133,7 @@ init((launch) => { { path: '/tags/:tag', component: MkTag }, { path: '/featured', name: 'featured', component: () => import('./views/pages/featured.vue').then(m => m.default) }, { path: '/explore', name: 'explore', component: () => import('./views/pages/explore.vue').then(m => m.default) }, - { path: '/explore/tags/:tag', name: 'explore', props: true, component: () => import('./views/pages/explore.vue').then(m => m.default) }, + { path: '/explore/tags/:tag', name: 'explore-tag', props: true, component: () => import('./views/pages/explore.vue').then(m => m.default) }, { path: '/share', component: MkShare }, { path: '/games/reversi/:game?', name: 'reversi', component: MkReversi }, { path: '/@:user', name: 'user', component: () => import('./views/pages/user/index.vue').then(m => m.default), children: [ |