component
The component
property can refer to any Vue component or HTML element tag name.
// Option 1 - HTML element tag
data() {
return {
uiSchema: [{
component: 'div'
}]
}
}
// Option 2 - Globally registered component
data() {
return {
uiSchema: [{
component: 'my-custom-component'
}]
}
}
// Option 3 - component object
import MyCustomComponent from './my-custom-component'
...
data() {
return {
uiSchema: [{
component: MyCustomComponent
}]
}
}
// Option 4 - Component from components prop
import MyCustomComponent from './my-custom-component'
...
data() {
return {
components: {
MyCustomComponent
},
uiSchema: [{
component: 'MyCustomComponent'
}],
model: { ... },
schema: { ... }
}
}
....
<template>
<vue-form-json-schema
v-model="model"
:components="components"
:ui-schema="uiSchema"
:schema="schema"
/>
</template>
Last updated