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

View file

@ -46,14 +46,17 @@ export default Vue.extend({
watch: { watch: {
gameId(id) { gameId(id) {
console.log(id); if (id == null) {
Progress.start(); this.game = null;
(this as any).api('games/reversi/games/show', { } else {
gameId: id Progress.start();
}).then(game => { (this as any).api('games/reversi/games/show', {
this.nav(game, true); gameId: id
Progress.done(); }).then(game => {
}); this.nav(game, true);
Progress.done();
});
}
} }
}, },