Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 5, 2020 17:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/91bc1f85ec55212dd2769f18a66453cc to your computer and use it in GitHub Desktop.
Save parzibyte/91bc1f85ec55212dd2769f18a66453cc to your computer and use it in GitHub Desktop.
<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&nbsp;<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