fixed checbox not reporting correct value
This commit is contained in:
@@ -145,7 +145,7 @@ onMounted(async () => {
|
|||||||
<!-- Passed Checkbox -->
|
<!-- Passed Checkbox -->
|
||||||
<VeeField :name="`attendees[${index}].passed`" v-slot="{ field: f, errors: e }">
|
<VeeField :name="`attendees[${index}].passed`" v-slot="{ field: f, errors: e }">
|
||||||
<div class="flex items-center h-[38px]">
|
<div class="flex items-center h-[38px]">
|
||||||
<input type="checkbox" class="h-4 w-4" v-bind="f" />
|
<input type="checkbox" :checked="f.value" @change="f.onChange($event)" />
|
||||||
</div>
|
</div>
|
||||||
</VeeField>
|
</VeeField>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user