Updates Roqueform fields by listening to change events of associated DOM elements.
import { createField } from 'roqueform';import uncontrolledPlugin from 'roqueform/plugin/uncontrolled';const field = createField({ hello: 'world' }, [uncontrolledPlugin()]);field.at('hello').ref(document.querySelector('input')); Copy
import { createField } from 'roqueform';import uncontrolledPlugin from 'roqueform/plugin/uncontrolled';const field = createField({ hello: 'world' }, [uncontrolledPlugin()]);field.at('hello').ref(document.querySelector('input'));
Updates Roqueform fields by listening to change events of associated DOM elements.