diff --git a/src/components/radio/radio-group.vue b/src/components/radio/radio-group.vue index 457b43d7..5c43cb76 100644 --- a/src/components/radio/radio-group.vue +++ b/src/components/radio/radio-group.vue @@ -87,7 +87,9 @@ value () { if(this.currentValue !== this.value){ this.currentValue = this.value; - this.updateValue(); + this.$nextTick(()=>{ + this.updateValue(); + }); } } }