use-form
Communicate the component with external forms.
Module
useForm syntax
If the webcomponent is nested within a form tag, this hook will return that form tag as a reference.
useFormListener syntax
If the webcomponent is nested within a form tag, you will be able to listen to events from that tag through useFormListener.
useFormInputHidden syntax
el hook renderiza un input hidden en el lightDOM cuyo name y value del input seran los parametros que el hook resiva
useFormInputRadio
One of the difficult inputs to standardize when working with shadowDOM is the radio input, thanks to this hook you will be able to create and observe a radio input synchronized with the form and its webcomponent.
This hook requires the definition of the properties in its webcomponent:
You can work with the input from the component logic, example:
Your component will automatically be reactive to the change of the states of the radio input
Example
Last updated