other
/
mew-iview
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Download as
Email Patches
Plain Diff
Browse Code ยป
Commit
721cf9cdeb664dec4818da94cd2b905ff2eb8bd5
Authored by
oyv1cent
2018-07-24 13:40:46 +0800
1 parent
9564af89
fix bug
Showing
1 changed file
with
3 additions
and
1 deletions
Show diff stats
src/components/radio/radio-group.vue
Inline
Side-by-side
src/components/radio/radio-group.vue
Wrap text
Show/Hide comments
View file @
721cf9c
...
...
@@ -84,7 +84,9 @@
84
84
value () {
85
85
if(this.currentValue !== this.value){
86
86
this.currentValue = this.value;
87
- this.updateValue();
87
+ this.$nextTick(()=>{
88
+ this.updateValue();
89
+ });
88
90
}
89
91
}
90
92
}
...
...