Merge pull request #4130 from oyv1cent/radio-pr

[fix bug]Radio component's bug
This commit is contained in:
Aresn 2018-07-31 10:27:49 +08:00 committed by GitHub
commit c8d200dae8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -87,7 +87,9 @@
value () { value () {
if(this.currentValue !== this.value){ if(this.currentValue !== this.value){
this.currentValue = this.value; this.currentValue = this.value;
this.updateValue(); this.$nextTick(()=>{
this.updateValue();
});
} }
} }
} }