We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27dbcfb commit 4971085Copy full SHA for 4971085
src/vfjs-component-wrapper/index.js
@@ -4,9 +4,13 @@ const vfjsComponentWrapper = {
4
name: 'vue-form-json-schema-field-wrapper',
5
mixins: [vfjsComponentMixin],
6
render() {
7
- return this.$createElement(this.component, {
8
- ...this.getVfjsAttributes(),
9
- }, this.vfjsComputedFieldChildren);
+ return this.$createElement(
+ this.component,
+ {
10
+ ...this.getVfjsAttributes(),
11
+ },
12
+ this.vfjsComputedFieldChildren,
13
+ );
14
},
15
};
16
0 commit comments