fix(RadioGroup): props reactivity issues (#1065)

This commit is contained in:
Romain Hamel
2023-12-06 17:15:05 +01:00
committed by GitHub
parent 1cb8df869f
commit 7196d81b4c
2 changed files with 4 additions and 3 deletions

View File

@@ -99,7 +99,7 @@ export default defineComponent({
const { ui, attrs } = useUI('radioGroup', toRef(props, 'ui'), config, toRef(props, 'class'))
const { ui: uiRadio } = useUI('radio', toRef(props, 'uiRadio'), configRadio)
const { emitFormChange, color, name } = useFormGroup({ ...props, isFieldset: true }, config)
const { emitFormChange, color, name } = useFormGroup(props, config)
provide('radio-group', { color, name })
const onUpdate = (value: any) => {