Skip to content

Commit

Permalink
fix: textfield disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
YuichiSemura committed Apr 16, 2024
1 parent c6ed33b commit d934c96
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/components/Roulette.vue
Original file line number Diff line number Diff line change
Expand Up @@ -447,17 +447,19 @@ watchEffect(() => {
handle=".handle"
item-key="."
>
<template #item="{ element, index }">
<template #item="{ _, index }">
<v-list-item class="list-group-item">
<v-text-field
v-model="lunchViewList[index]"
density="compact"
hide-details
variant="outlined"
:disabled="!isPrepareStatus"
:bg-color="hslMapForTextField(index)"
>
<template v-slot:prepend>
<v-icon icon="mdi-menu" class="handle"></v-icon>
<v-icon v-if="isPrepareStatus" icon="mdi-menu" class="handle"></v-icon>
<v-icon v-else icon="mdi-menu"></v-icon>
</template>
<template v-slot:append>
<v-btn
Expand Down

0 comments on commit d934c96

Please sign in to comment.