X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FRules.vue;h=c77294ffc1060bd69fd762e1338c08640edf59be;hb=41cb9b940084d6f56351a772f0340ebf0bc8d1bc;hp=fd668462c26fa466bb41acb639e10f71164653d2;hpb=42eb4eaf62becc9260897277e1cfe5882eba2017;p=vchess.git diff --git a/client/src/views/Rules.vue b/client/src/views/Rules.vue index fd668462..c77294ff 100644 --- a/client/src/views/Rules.vue +++ b/client/src/views/Rules.vue @@ -2,43 +2,46 @@ .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(v-show="!gameInProgress" @click="watchComputerGame") + button(@click="clickReadRules") Read the rules + 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") + button(v-show="gameInProgress" @click="() => stopGame()") | Stop game - VariantRules(v-show="display=='rules'" :vname="variant.name") - Game(v-show="display=='computer'" :gid-or-fen="fen" - :mode="mode" :sub-mode="subMode" :variant="variant" - @computer-think="gameInProgress=false" @game-over="stopGame") + .section-content(v-show="display=='rules'" v-html="content") + ComputerGame(v-show="display=='computer'" :game-info="gameInfo" + @computer-think="gameInProgress=false" @game-over="stopGame" + @game-stopped="gameStopped") + +