Created
August 5, 2020 17:10
-
-
Save parzibyte/91bc1f85ec55212dd2769f18a66453cc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<table class="table table-bordered"> | |
<thead> | |
<tr> | |
<th v-for="i in COLUMNS"> | |
<button :disabled="!canPlay" @click="makeMove(i)" class="btn btn-warning">Make move | |
here <i class="fa fa-arrow-down"></i></button> | |
</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr v-for="row in board"> | |
<td v-for="cell in row"> | |
<img class="img-fluid img-player" :src="cellImage(cell)" alt=""> | |
</td> | |
</tr> | |
</tbody> | |
</table> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment