Skip to content

Commit 4971085

Browse files
committed
Format
1 parent 27dbcfb commit 4971085

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

src/vfjs-component-wrapper/index.js

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,13 @@ const vfjsComponentWrapper = {
44
name: 'vue-form-json-schema-field-wrapper',
55
mixins: [vfjsComponentMixin],
66
render() {
7-
return this.$createElement(this.component, {
8-
...this.getVfjsAttributes(),
9-
}, this.vfjsComputedFieldChildren);
7+
return this.$createElement(
8+
this.component,
9+
{
10+
...this.getVfjsAttributes(),
11+
},
12+
this.vfjsComputedFieldChildren,
13+
);
1014
},
1115
};
1216

0 commit comments

Comments
 (0)