Replies: 1 comment
-
Hey there. You are correct, the That means that vee-validate's API doesn't care about elements or their tag names. This is why it is UI agnostic, all it cares about is
Not sure what do you mean, can you elaborate? Typically calling For the boundary checking, you can use vee-validate's dev tools to see if you have more than one form detected and which fields are registered in which form. |
Beta Was this translation helpful? Give feedback.
-
I have a general question on how
useForm
actually works. It seems it maybe is just looking for inputs and for thename
attribute of inputs. That would mean, form tags would not be necessary at all to have an actual form and also it would never work with the html submit and such.Now how do I separate forms from each other? Lets say I have a useForm on a search with some searchoptions and as a child component I have a result wrapper that allows filter options also with useForm to organize that input. What will happen? And how to find out if I crossed some scope/context boundries?
Beta Was this translation helpful? Give feedback.
All reactions