basic card display
This commit is contained in:
@@ -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 }}
|
||||
|
||||
Reference in New Issue
Block a user