From 61a9ad23f17b12f1ed5dc3cf791f1ad7313f7606 Mon Sep 17 00:00:00 2001 From: syuilo Date: Sat, 4 Aug 2018 12:35:57 +0900 Subject: [PATCH] Fix bug --- .../app/common/views/components/games/reversi/reversi.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/client/app/common/views/components/games/reversi/reversi.vue b/src/client/app/common/views/components/games/reversi/reversi.vue index ac5fc9048a..d99634a950 100644 --- a/src/client/app/common/views/components/games/reversi/reversi.vue +++ b/src/client/app/common/views/components/games/reversi/reversi.vue @@ -48,6 +48,10 @@ export default Vue.extend({ }, watch: { + game() { + this.$emit('gamed', this.game); + }, + gameId() { this.fetch(); }