diff --git a/src/components/VCheckbox/VCheckbox.vue b/src/components/VCheckbox/VCheckbox.vue index 7212ef3f5..7370e3a2b 100644 --- a/src/components/VCheckbox/VCheckbox.vue +++ b/src/components/VCheckbox/VCheckbox.vue @@ -27,9 +27,21 @@ const props = defineProps({ type: String, default: '', }, + value: { + type: String, + default: '', + }, }); -const {modelValue, label, inputClass, color, disabled, size} = toRefs(props); +const { + modelValue, + label, + inputClass, + color, + disabled, + size, + value: checkboxValue, +} = toRefs(props); const emit = defineEmits(['update:modelValue']); @@ -69,6 +81,7 @@ watch(modelValue, (val) => {