main
.row
.col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2
.button-group
button(@click="clickReadRules()") {{ st.tr["Rules"] }}
button(
v-show="!gameInProgress"
@click="startGame('auto')"
)
| {{ st.tr["Example game"] }}
button(
v-show="!gameInProgress"
@click="startGame('versus')"
)
| {{ st.tr["Practice"] }}
button(
v-show="gameInProgress"
@click="stopGame()"
)
| {{ st.tr["Stop game"] }}
button(
v-if="showAnalyzeBtn"
@click="gotoAnalyze()"
)
| {{ st.tr["Analysis mode"] }}
.row
.col-sm-12.col-md-8.col-md-offset-2.col-lg-6.col-lg-offset-3
div(
v-show="display=='rules'"
v-html="content"
)
ComputerGame(
ref="compgame"
v-show="display=='computer'"
:game-info="gameInfo"
@game-stopped="gameStopped"
)