X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FRules.vue;h=e709e50a54e9dfed2e7d5f1b9ea4c5fe3b44eaf2;hb=af32cf62c4e117a49a76aef24146555a724dd463;hp=738e25fa3572630e4f4ea5c90a94d03be66353dd;hpb=13aa5a44fe3da4eac5ab04f0120ccbd5927f91c1;p=vchess.git diff --git a/client/src/views/Rules.vue b/client/src/views/Rules.vue index 738e25fa..e709e50a 100644 --- a/client/src/views/Rules.vue +++ b/client/src/views/Rules.vue @@ -2,17 +2,16 @@ .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 .section-content(v-show="display=='rules'" v-html="content") - ComputerGame(v-show="display=='computer'" - :fen="fen" :mode="mode" :vname="variant.name" - @computer-think="gameInProgress=false" @game-over="stopGame") + ComputerGame(v-show="display=='computer'" :game-info="gameInfo" + @game-over="stopGame" @game-stopped="gameStopped")