mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
22 lines
321 B
JavaScript
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;
|
|
}
|
|
},
|
|
};
|