This commit is contained in:
syuilo 2018-08-03 22:49:54 +09:00
parent 13451f6843
commit 5defcd6592

View file

@ -46,7 +46,9 @@ export default Vue.extend({
watch: { watch: {
gameId(id) { gameId(id) {
console.log(id); if (id == null) {
this.game = null;
} else {
Progress.start(); Progress.start();
(this as any).api('games/reversi/games/show', { (this as any).api('games/reversi/games/show', {
gameId: id gameId: id
@ -55,6 +57,7 @@ export default Vue.extend({
Progress.done(); Progress.done();
}); });
} }
}
}, },
mounted() { mounted() {