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 1
1
import vfjsField from './vfjs-field-component' ;
2
2
import vfjsFieldMixin from './vfjs-field-mixin' ;
3
- import vfjsGlobalMixin from './vfjs-global' ;
3
+ import vfjsGlobalMixin from './vfjs-global-mixin ' ;
4
4
import vfjsGlobal from './vfjs-global-component' ;
5
5
6
6
export {
Original file line number Diff line number Diff line change 1
- import vfjsComponentMixin from '../vfjs-component ' ;
1
+ import vfjsFieldMixin from '../vfjs-field-mixin ' ;
2
2
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 ] ,
6
6
render ( ) {
7
7
return this . $createElement (
8
8
this . vfjsComponent ,
@@ -14,4 +14,4 @@ const vfjsComponentWrapper = {
14
14
} ,
15
15
} ;
16
16
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 ' ;
2
2
3
3
const VueFormJsonSchema = {
4
4
name : 'vue-form-json-schema' ,
Original file line number Diff line number Diff line change 1
1
import { set , cloneDeep } from 'lodash' ;
2
- import vfjsComponentWrapper from '../../../vfjs-component-wrapper ' ;
2
+ import vfjsFieldComponent from '../../../vfjs-field-component ' ;
3
3
4
4
const vfjsHelpers = {
5
5
vfjsHelperCreateField ( vfjsFieldUiSchema ) {
@@ -114,7 +114,7 @@ const vfjsHelpers = {
114
114
}
115
115
116
116
return this . $createElement (
117
- vfjsComponentWrapper ,
117
+ vfjsFieldComponent ,
118
118
{
119
119
key : `${ props . vfjsFieldId } -wrapper` ,
120
120
props : {
You can’t perform that action at this time.
0 commit comments