1
0
mirror of https://github.com/danbee/chess synced 2025-03-04 08:39:06 +00:00
chess/app/components/chess-board.vue

19 lines
299 B
Vue

<template>
<div class="board">
<div v-for="row in board" class="board-row">
<div v-for="square in row" class="board-square">
</div>
</div>
</div>
</template>
<script>
export default {
computed: {
board() {
return this.$store.state.board;
}
},
};
</script>