.row
.col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2
input#modalEog.modal(type="checkbox")
div(role="dialog" aria-labelledby="eogMessage")
.card.smallpad.small-modal.text-center
label.modal-close(for="modalEog")
h3#eogMessage.section {{ endgameMessage }}
Board(:vr="vr" :last-move="lastMove" :analyze="analyze" :user-color="mycolor"
:orientation="orientation" :vname="variant.name" @play-move="play")
.button-group
button(@click="play") Play
button(@click="undo") Undo
button(@click="flip") Flip
button(@click="gotoBegin") GotoBegin
button(@click="gotoEnd") GotoEnd
#fenDiv.section-content(v-if="showFen && !!vr")
p#fenString.text-center {{ vr.getFen() }}
#pgnDiv.section-content
a#download(href="#")
.button-group
button#downloadBtn(@click="download") {{ st.tr["Download PGN"] }}
button Import game
//MoveList(v-if="showMoves"
:moves="moves" :cursor="cursor" @goto-move="gotoMove")