Files
front/components/GameBoard.vue
T
2024-04-05 18:48:37 +02:00

21 lines
499 B
Vue

<script setup lang="ts">
const props = defineProps(['game'])
</script>
<template>
<div>
<div>
market_amount = {{ props.game.market_stack?.length }}
<br>
market =
<CardPreview v-for="c in props.game.market" :data="c" :key="c.uuid" />
<br>
gems =
<CardSlot :stack="props.game.gem_stack" />
</div>
<div>
players = {{ props.game.players }}
</div>
</div>
</template>