19 lines
412 B
Vue
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> |