mirror of
https://github.com/danbee/chess
synced 2025-03-04 08:39:06 +00:00
22 lines
330 B
Vue
22 lines
330 B
Vue
<template>
|
|
<div class="board-square">
|
|
<img v-if="piece != null" :src="pieceImage(piece)">
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
methods: {
|
|
pieceImage: (piece) => {
|
|
return "/images/"
|
|
+ piece.type
|
|
+ "_"
|
|
+ piece.colour
|
|
+ ".svg";
|
|
}
|
|
},
|
|
|
|
props: ["piece"]
|
|
};
|
|
</script>
|