try again

This commit is contained in:
Branden J Brown 2024-02-03 14:06:03 -06:00
parent 702dfe63ac
commit 104e4c3db0
2 changed files with 2 additions and 4 deletions

View File

@ -7,9 +7,7 @@
</v-row>
<v-row class="d-flex flex-fill">
<v-spacer v-if="!dealer"></v-spacer>
<v-col cols="8">
<PlayerItems :items="props.stats.items" :disabled="props.disabled" @item="(evt: number) => emit('item', evt)" />
</v-col>
</v-row>
</v-container>
</template>

View File

@ -1,7 +1,7 @@
<template>
<v-container>
<v-row v-for="r in 4">
<v-col v-for="c in 2" cols="4">
<v-col v-for="c in 2">
<v-btn :disabled="btnDisabled(r, c)" @click="emit('item', itemIndex(r, c))" variant="outlined">
{{ props.items[itemIndex(r, c)] }}
</v-btn>