mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
27 lines
398 B
JavaScript
27 lines
398 B
JavaScript
export const FieldMixin = {
|
|
inject: {
|
|
vanField: {
|
|
default: null,
|
|
},
|
|
},
|
|
|
|
watch: {
|
|
value() {
|
|
const field = this.vanField;
|
|
|
|
if (field) {
|
|
field.resetValidation();
|
|
field.validateWithTrigger('onChange');
|
|
}
|
|
},
|
|
},
|
|
|
|
created() {
|
|
const field = this.vanField;
|
|
|
|
if (field && !field.children) {
|
|
field.children = this;
|
|
}
|
|
},
|
|
};
|