Signature for a Vue render function. Specialisation of the generic RenderFunction with Output = VNode and Props = VueRenderProps.
Output = VNode
Props = VueRenderProps
Composes cleanly with the generic dispatch in core/renderField.ts:
core/renderField.ts
const r: VueRenderFunction = (props) => h("input", { value: props.value });const generic: RenderFunction<VNode, VueRenderProps> = r; // assignable Copy
const r: VueRenderFunction = (props) => h("input", { value: props.value });const generic: RenderFunction<VNode, VueRenderProps> = r; // assignable
Signature for a Vue render function. Specialisation of the generic RenderFunction with
Output = VNodeandProps = VueRenderProps.Composes cleanly with the generic dispatch in
core/renderField.ts: