File tree Expand file tree Collapse file tree 4 files changed +9
-9
lines changed
vfjs-global-mixin/methods/vfjs-helpers Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 11import vfjsField from './vfjs-field-component' ;
22import vfjsFieldMixin from './vfjs-field-mixin' ;
3- import vfjsGlobalMixin from './vfjs-global' ;
3+ import vfjsGlobalMixin from './vfjs-global-mixin ' ;
44import vfjsGlobal from './vfjs-global-component' ;
55
66export {
Original file line number Diff line number Diff line change 1- import vfjsComponentMixin from '../vfjs-component ' ;
1+ import vfjsFieldMixin from '../vfjs-field-mixin ' ;
22
3- const vfjsComponentWrapper = {
4- name : 'vue-form-json-schema-field-wrapper ' ,
5- mixins : [ vfjsComponentMixin ] ,
3+ const VueFormJsonSchemaFieldComponent = {
4+ name : 'vue-form-json-schema-field-component ' ,
5+ mixins : [ vfjsFieldMixin ] ,
66 render ( ) {
77 return this . $createElement (
88 this . vfjsComponent ,
@@ -14,4 +14,4 @@ const vfjsComponentWrapper = {
1414 } ,
1515} ;
1616
17- export default vfjsComponentWrapper ;
17+ export default VueFormJsonSchemaFieldComponent ;
Original file line number Diff line number Diff line change 1- import vfjsGlobalMixin from '../vfjs-global' ;
1+ import vfjsGlobalMixin from '../vfjs-global-mixin ' ;
22
33const VueFormJsonSchema = {
44 name : 'vue-form-json-schema' ,
Original file line number Diff line number Diff line change 11import { set , cloneDeep } from 'lodash' ;
2- import vfjsComponentWrapper from '../../../vfjs-component-wrapper ' ;
2+ import vfjsFieldComponent from '../../../vfjs-field-component ' ;
33
44const vfjsHelpers = {
55 vfjsHelperCreateField ( vfjsFieldUiSchema ) {
@@ -114,7 +114,7 @@ const vfjsHelpers = {
114114 }
115115
116116 return this . $createElement (
117- vfjsComponentWrapper ,
117+ vfjsFieldComponent ,
118118 {
119119 key : `${ props . vfjsFieldId } -wrapper` ,
120120 props : {
You can’t perform that action at this time.
0 commit comments