schema-components - v3.7.0
    Preparing search index...

    Type Alias VueRenderFunction

    VueRenderFunction: RenderFunction<VNode, VueRenderProps>

    Signature for a Vue render function. Specialisation of the generic RenderFunction with Output = VNode and Props = VueRenderProps.

    Composes cleanly with the generic dispatch in core/renderField.ts:

    const r: VueRenderFunction = (props) => h("input", { value: props.value });
    const generic: RenderFunction<VNode, VueRenderProps> = r; // assignable