basic card display

This commit is contained in:
2024-04-05 18:48:37 +02:00
parent 3657d6a888
commit 05d711644d
4 changed files with 15 additions and 13 deletions
+4 -2
View File
@@ -8,9 +8,11 @@ const props = defineProps(['game'])
<div>
market_amount = {{ props.game.market_stack?.length }}
<br>
market = {{ props.game.market }}
market =
<CardPreview v-for="c in props.game.market" :data="c" :key="c.uuid" />
<br>
gems = {{ props.game.gem_stack }}
gems =
<CardSlot :stack="props.game.gem_stack" />
</div>
<div>
players = {{ props.game.players }}