X-Git-Url: https://git.auder.net/?p=vchess.git;a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FRules.vue;h=c77294ffc1060bd69fd762e1338c08640edf59be;hp=f196e355b5d8db2600ddbbe0d74a0120f45add1d;hb=41cb9b940084d6f56351a772f0340ebf0bc8d1bc;hpb=40367778b7c2c5412b6941874e3322e584ef1aa0 diff --git a/client/src/views/Rules.vue b/client/src/views/Rules.vue index f196e355..c77294ff 100644 --- a/client/src/views/Rules.vue +++ b/client/src/views/Rules.vue @@ -2,16 +2,17 @@ .row .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2 .button-group - button(@click="display='rules'") Read the rules + button(@click="clickReadRules") Read the rules button(v-show="!gameInProgress" @click="() => startGame('auto')") | Observe a sample game button(v-show="!gameInProgress" @click="() => startGame('versus')") | Beat the computer! - button(v-show="gameInProgress" @click="stopGame") + button(v-show="gameInProgress" @click="() => stopGame()") | Stop game .section-content(v-show="display=='rules'" v-html="content") ComputerGame(v-show="display=='computer'" :game-info="gameInfo" - @computer-think="gameInProgress=false" @game-over="stopGame") + @computer-think="gameInProgress=false" @game-over="stopGame" + @game-stopped="gameStopped")