Files
front/components/GameBoard.vue
T
2024-04-05 16:39:42 +02:00

19 lines
412 B
Vue

<script setup lang="ts">
const props = defineProps(['game'])
</script>
<template>
<div>
<div>
market_amount = {{ props.game.market_stack?.length }}
<br>
market = {{ props.game.market }}
<br>
gems = {{ props.game.gem_stack }}
</div>
<div>
players = {{ props.game.players }}
</div>
</div>
</template>