vant/src/mixins/field.js
2020-02-12 17:05:23 +08:00

22 lines
321 B
JavaScript

export const FieldMixin = {
inject: {
vanField: {
default: null,
},
},
watch: {
value() {
if (this.vanField) {
this.vanField.resetValidation();
}
},
},
created() {
if (this.vanField && !this.vanField.children) {
this.vanField.children = this;
}
},
};