22 lines
292 B
JavaScript
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;
|
|
}
|
|
},
|
|
};
|