UNPKG

@jsonforms/vue-vuetify

Version:

Vue Vuetify renderers for JSON Forms

14 lines (12 loc) 361 B
import { type JsonFormsRendererRegistryEntry, rankWith, and, isOneOfEnumControl, optionIs, } from '@jsonforms/core'; import controlRenderer from './OneOfRadioGroupControlRenderer.vue'; export const entry: JsonFormsRendererRegistryEntry = { renderer: controlRenderer, tester: rankWith(20, and(isOneOfEnumControl, optionIs('format', 'radio'))), };