UNPKG

@jsonforms/vue-vuetify

Version:

Vue Vuetify renderers for JSON Forms

10 lines (8 loc) 278 B
import { createAjv as createAjvCore } from '@jsonforms/core'; import type Ajv from 'ajv'; import { type Options } from 'ajv'; export const createAjv = (options?: Options): Ajv => { const ajv = createAjvCore(options); ajv.addFormat('password', () => true); return ajv; };