You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
419 B
24 lines
419 B
export var FieldMixin = {
|
|
inject: {
|
|
vanField: {
|
|
default: null
|
|
}
|
|
},
|
|
watch: {
|
|
value: function value() {
|
|
var field = this.vanField;
|
|
|
|
if (field) {
|
|
field.resetValidation();
|
|
field.validateWithTrigger('onChange');
|
|
}
|
|
}
|
|
},
|
|
created: function created() {
|
|
var field = this.vanField;
|
|
|
|
if (field && !field.children) {
|
|
field.children = this;
|
|
}
|
|
}
|
|
}; |