Skip to content

Commit

Permalink
fix(v-radio-group): fix second value
Browse files Browse the repository at this point in the history
  • Loading branch information
gravitano committed Jun 27, 2022
1 parent be056a5 commit c443bab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/forms/src/radio/VRadioGroup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ const emit = defineEmits([
]);
const {value: selected, errorMessage} = useField(name, rules, {
initialValue: modelValue.value || modelValue.value,
initialValue: modelValue.value || value.value,
});
const onChange = (event: any) => {
Expand Down

0 comments on commit c443bab

Please sign in to comment.