This commit is contained in:
2019-11-26 00:35:25 +00:00
parent 2a17ffd35a
commit 4c667b39a2
4 changed files with 38 additions and 12 deletions

View File

@@ -53,7 +53,7 @@
:label="lt(item.fld)"
:ref="item.fld"
:error-messages="form().serverErrors(parentVM, item.fld)"
:rules="[form().required(parentVM, item.fld)]"
:rules="[form().required(parentVM, item.fld, _self)]"
auto-grow
clearable
></v-textarea>
@@ -218,7 +218,7 @@ export default {
this.$emit("update:value", ret);
//this triggers the onchange routine in the parent form
//mainly for custom fields purposes so that the dirty checking works
this.$emit("change");
this.$emit("change",ret);
}
},
beforeCreate() {