diff --git a/src/ux-components/radio/radio.vue b/src/ux-components/radio/radio.vue index 1a0d52d7..2c02e245 100644 --- a/src/ux-components/radio/radio.vue +++ b/src/ux-components/radio/radio.vue @@ -76,6 +76,7 @@ value: inputValue, handleChange, errors, + resetField } = useField(props.groupName, props.validationRules, { type: inputType, @@ -84,8 +85,12 @@ return { handleChange, errors, + resetField }; }, + unmounted(){ + this.resetField(); + } };