forked from FoundKeyGang/FoundKey
Fix 404
This commit is contained in:
parent
443f967611
commit
01584a6bf9
2 changed files with 4 additions and 4 deletions
|
@ -23,8 +23,8 @@ export default Vue.extend({
|
||||||
computed: {
|
computed: {
|
||||||
popout(): string {
|
popout(): string {
|
||||||
return this.game
|
return this.game
|
||||||
? `${url}/reversi/${this.game.id}`
|
? `${url}/games/reversi/${this.game.id}`
|
||||||
: `${url}/reversi`;
|
: `${url}/games/reversi`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -19,10 +19,10 @@ export default Vue.extend({
|
||||||
methods: {
|
methods: {
|
||||||
nav(game, actualNav) {
|
nav(game, actualNav) {
|
||||||
if (actualNav) {
|
if (actualNav) {
|
||||||
this.$router.push(`/reversi/${game.id}`);
|
this.$router.push(`/games/reversi/${game.id}`);
|
||||||
} else {
|
} else {
|
||||||
// TODO: https://github.com/vuejs/vue-router/issues/703
|
// TODO: https://github.com/vuejs/vue-router/issues/703
|
||||||
this.$router.push(`/reversi/${game.id}`);
|
this.$router.push(`/games/reversi/${game.id}`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue