Form Component: expose _defaultErrorHandlers

This commit is contained in:
cgfhtw
2024-03-11 15:24:48 +01:00
parent 40c98b1dcc
commit 6acf65b49f
+2 -1
View File
@@ -46,7 +46,8 @@ export default {
const factory = Object.create(Object.getPrototypeOf(this.$fhcApi.factory), Object.getOwnPropertyDescriptors(this.$fhcApi.factory));
factory.$fhcApi = {
get: this.get,
post: this.post
post: this.post,
_defaultErrorHandlers: this.$fhcApi._defaultErrorHandlers
};
return factory;
}