AnnEthan
(Ann Ethan)
1
import { JsonForms } from ‘@jsonforms/vue’;
const data = ref({name: ‘John Doe’});
const schema = reactive({
type: ‘object’,
properties: {
name: {type: ‘string’, maxLength: 5}
}
});
const uischema = reactive({
type: ‘Control’,
scope: ‘#/properties/name’,
label: ‘Name’
})
Page display No applicable renderer found.
sdirix
(Stefan Dirix)
2
Hi @AnnEthan,
See the JSON Forms Vue seed for a simple example application.
AnnEthan
(Ann Ethan)
3
Hello, does jsonForms have its own style? Do you need to write all the styles by yourself。Can I introduce the element Plus style if I want?
AnnEthan
(Ann Ethan)
4
Does jsonForm support image uploading and tabs?