How does vue3 use jsonForms

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.

Hi @AnnEthan,

See the JSON Forms Vue seed for a simple example application.

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?

Does jsonForm support image uploading and tabs?

image uploading style