X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FRules.vue;h=f626cc9e66ad0af8d59932d6f3a0d5b9772ead23;hb=2c6cb25eb12074af1f0fb29383eef8a175abb0f0;hp=fd26f16b629b2c25862538ec49eb399335a01e2c;hpb=4473050c257453abb37cd53d8d1e6e941c49bf91;p=vchess.git diff --git a/client/src/views/Rules.vue b/client/src/views/Rules.vue index fd26f16b..f626cc9e 100644 --- a/client/src/views/Rules.vue +++ b/client/src/views/Rules.vue @@ -3,61 +3,50 @@ .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(v-show="!gameInProgress" @click="watchComputerGame") + button(v-show="!gameInProgress" @click="() => startGame('auto')") | Observe a sample game - button(v-show="!gameInProgress" @click="playAgainstComputer") + button(v-show="!gameInProgress" @click="() => startGame('versus')") | Beat the computer! button(v-show="gameInProgress" @click="stopGame") | Stop game - div(v-show="display=='rules'" v-html="content" class="section-content") - Game(v-show="display=='computer'" :gid-or-fen="fen" - :mode="mode" :sub-mode="subMode" :variant="variant" + .section-content(v-show="display=='rules'" v-html="content") + ComputerGame(v-show="display=='computer'" :game-info="gameInfo" @computer-think="gameInProgress=false" @game-over="stopGame") + +