From 721cf9cdeb664dec4818da94cd2b905ff2eb8bd5 Mon Sep 17 00:00:00 2001 From: oyv1cent <641027967@qq.com> Date: Tue, 24 Jul 2018 13:40:46 +0800 Subject: [PATCH] fix bug --- src/components/radio/radio-group.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/radio/radio-group.vue b/src/components/radio/radio-group.vue index 59d15355..dc34a4db 100644 --- a/src/components/radio/radio-group.vue +++ b/src/components/radio/radio-group.vue @@ -84,7 +84,9 @@ value () { if(this.currentValue !== this.value){ this.currentValue = this.value; - this.updateValue(); + this.$nextTick(()=>{ + this.updateValue(); + }); } } }