fix(Field): support model value (#2986)

fix #2960
This commit is contained in:
rex 2020-04-08 23:33:37 +08:00 committed by GitHub
parent 6d774d0585
commit b850cce518
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -121,8 +121,12 @@ VantComponent({
},
emitChange() {
this.$emit('input', this.value);
this.$emit('change', this.value);
this.setData({ value: this.value });
wx.nextTick(() => {
this.$emit('input', this.value);
this.$emit('change', this.value);
});
},
setShowClear() {