diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-01-21 17:20:41 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-01-21 17:20:41 +0900 |
| commit | 443f967611b76bd6076569a4a940abe12a397917 (patch) | |
| tree | 5d1c9a1aaf570f723c06dfa582650ff4edd54adc /src | |
| parent | :art: (diff) | |
| download | misskey-443f967611b76bd6076569a4a940abe12a397917.tar.gz misskey-443f967611b76bd6076569a4a940abe12a397917.tar.bz2 misskey-443f967611b76bd6076569a4a940abe12a397917.zip | |
Update reversi.vue
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/mobile/views/pages/games/reversi.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/app/mobile/views/pages/games/reversi.vue b/src/client/app/mobile/views/pages/games/reversi.vue index 983fb07821..4f371b9b5a 100644 --- a/src/client/app/mobile/views/pages/games/reversi.vue +++ b/src/client/app/mobile/views/pages/games/reversi.vue @@ -20,10 +20,10 @@ export default Vue.extend({ methods: { nav(game, actualNav) { if (actualNav) { - this.$router.push(`/reversi/${game.id}`); + this.$router.push(`/games/reversi/${game.id}`); } else { // TODO: https://github.com/vuejs/vue-router/issues/703 - this.$router.push(`/reversi/${game.id}`); + this.$router.push(`/games/reversi/${game.id}`); } } } |