修复RadioGroup只能在使用v-model绑定的情况下才能正常使用的bug。

使用:value绑定的时候,RadioGroup并不能正常切换。
This commit is contained in:
Wu-K'ung 2018-04-26 11:19:41 +08:00 committed by GitHub
parent c45f05dd43
commit d44f99fd15
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -67,7 +67,7 @@
this.childrens = findComponentsDownward(this, 'Radio');
if (this.childrens) {
this.childrens.forEach(child => {
child.currentValue = this.value === child.label;
child.currentValue = this.currentValue === child.label;
child.group = true;
});
}
@ -82,8 +82,10 @@
},
watch: {
value () {
this.currentValue = this.value;
this.updateValue();
if(this.currentValue !== this.value;){
this.currentValue = this.value;
this.updateValue();
}
}
}
};