fix: radio bug
parent
e76a41f9a8
commit
0028a10722
|
@ -54,14 +54,14 @@ export default {
|
|||
handleChange (event) {
|
||||
const targetChecked = event.target.checked
|
||||
this.$emit('input', targetChecked)
|
||||
const { name, value, radioGroupContext, stateChecked } = this
|
||||
const { name, value, radioGroupContext } = this
|
||||
if ((!hasProp(this, 'checked') && !radioGroupContext) || (radioGroupContext && radioGroupContext.value === undefined)) {
|
||||
this.stateChecked = targetChecked
|
||||
}
|
||||
const target = {
|
||||
name,
|
||||
value,
|
||||
checked: !stateChecked,
|
||||
checked: targetChecked,
|
||||
}
|
||||
if (this.radioGroupContext) {
|
||||
this.radioGroupContext.handleChange({ target })
|
||||
|
|
Loading…
Reference in New Issue