try again
This commit is contained in:
parent
702dfe63ac
commit
104e4c3db0
@ -7,9 +7,7 @@
|
|||||||
</v-row>
|
</v-row>
|
||||||
<v-row class="d-flex flex-fill">
|
<v-row class="d-flex flex-fill">
|
||||||
<v-spacer v-if="!dealer"></v-spacer>
|
<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)" />
|
<PlayerItems :items="props.stats.items" :disabled="props.disabled" @item="(evt: number) => emit('item', evt)" />
|
||||||
</v-col>
|
|
||||||
</v-row>
|
</v-row>
|
||||||
</v-container>
|
</v-container>
|
||||||
</template>
|
</template>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<v-container>
|
<v-container>
|
||||||
<v-row v-for="r in 4">
|
<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">
|
<v-btn :disabled="btnDisabled(r, c)" @click="emit('item', itemIndex(r, c))" variant="outlined">
|
||||||
{{ props.items[itemIndex(r, c)] }}
|
{{ props.items[itemIndex(r, c)] }}
|
||||||
</v-btn>
|
</v-btn>
|
||||||
|
Loading…
Reference in New Issue
Block a user