Replies: 2 comments 8 replies
-
Not sure, it seems like you have multiple issues at the same time. Could you create this in simple demo over stackblitz or codesandbox? |
Beta Was this translation helpful? Give feedback.
7 replies
-
I'm still waiting a reply on the last post. See the last post above. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I have a form using useForm and useFieldArray with Vue 3 composition API and the keep alive router view.
It uses meta from useForm to enable/disable the form Back, Reset and Submit buttons, ei, meta.valid and meta.dirty
The problem I'm having is when the user adds a row or two to the array (it's using the push method) and types values into the fields, it removes the values when you exit the field. Also meta.valid is never true after that happens.
Also after data is loaded into the form from an existing record, meta.valid is always false even if all validation requirements are met and meta.dirty is always true even though no changes have been made. This is happening on all my forms, even without arrays.
Any ideas what might be wrong or how to test?
Thanks, Dan
Beta Was this translation helpful? Give feedback.
All reactions