Files
vant/src/mixins/field.js
2020-02-10 11:04:03 +08:00

22 lines
292 B
JavaScript

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