This commit is contained in:
syuilo
2019-01-21 17:25:36 +09:00
parent 443f967611
commit 01584a6bf9
2 changed files with 4 additions and 4 deletions

View File

@@ -23,8 +23,8 @@ export default Vue.extend({
computed: {
popout(): string {
return this.game
? `${url}/reversi/${this.game.id}`
: `${url}/reversi`;
? `${url}/games/reversi/${this.game.id}`
: `${url}/games/reversi`;
}
}
});