File tree Expand file tree Collapse file tree 3 files changed +14
-6
lines changed
Expand file tree Collapse file tree 3 files changed +14
-6
lines changed Original file line number Diff line number Diff line change 11declare function modelValueComponent (
22 baseComponent : object | String | Function ,
3- options : {
4- model : String
5- } ,
6- rootSchema : object ,
7- includeUndefinedValues ?: boolean ,
3+ options ?: {
4+ model ?: String
5+ }
86) : any ;
97
108export default modelValueComponent ;
Original file line number Diff line number Diff line change 11import JsonSchemaForm from './vueForm' ;
22import getDefaultFormState from './getDefaultFormState' ;
3+ import modelValueComponent from './modelValueComponent' ;
34import fieldProps from './fieldProps' ;
45import vueUtils from './vueUtils' ;
56import formUtils from './formUtils' ;
@@ -16,7 +17,8 @@ export {
1617 vueUtils ,
1718 formUtils ,
1819 schemaValidate ,
19- i18n
20+ i18n ,
21+ modelValueComponent
2022} ;
2123
2224export class SchemaField { }
Original file line number Diff line number Diff line change 1+ declare function modelValueComponent (
2+ baseComponent : object | String | Function ,
3+ options ?: {
4+ model ?: String
5+ }
6+ ) : any ;
7+
8+ export default modelValueComponent ;
You can’t perform that action at this time.
0 commit comments