X-Git-Url: https://git.auder.net/images/pieces/%22%20%20VariantRules.getPpath%28board%5Bi%5D%5Bj%5D%29%20%20%20%22.svg?a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FRules.vue;h=f196e355b5d8db2600ddbbe0d74a0120f45add1d;hb=92a523d1a74cbabcfd7d6ade45f25fa622815f0b;hp=4edc428f2942e94e7fdca2911b6d3aa33d5cb3e0;hpb=50aed5a15e214d31b63f6320209ac14fe5c052cb;p=vchess.git diff --git a/client/src/views/Rules.vue b/client/src/views/Rules.vue index 4edc428f..f196e355 100644 --- a/client/src/views/Rules.vue +++ b/client/src/views/Rules.vue @@ -3,42 +3,44 @@ .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 .section-content(v-show="display=='rules'" v-html="content") - Game(v-show="display=='computer'" :gid-or-fen="fen" - :mode="mode" :sub-mode="subMode" :variant="variant" + ComputerGame(v-show="display=='computer'" :game-info="gameInfo" @computer-think="gameInProgress=false" @game-over="stopGame")