element-auto-form
Version:
Create automatic forms with element and json-shema (extended).
29 lines (28 loc) • 368 B
JavaScript
export var Props = {
instance: {
type: Object,
required: true
},
name: {
type: String,
required: true
},
prop: {
type: Object,
default: function () {
return {}
}
},
attributes: {
type: Object,
default: function () {
return {}
}
},
schema: {
type: Object
},
config: {
type: Object
}
}