try again

This commit is contained in:
Branden J Brown 2024-02-03 14:08:34 -06:00
parent 08afcdc573
commit 789dcd57f9
1 changed files with 4 additions and 2 deletions

View File

@ -1,11 +1,13 @@
<template>
<v-container>
<v-row v-for="r in 4">
<v-col v-for="c in 2" cols="6">
<v-spacer></v-spacer>
<div 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>
</v-col>
</div>
<v-spacer></v-spacer>
</v-row>
</v-container>
</template>