Replies: 1 comment 1 reply
-
This might be a bug, Alternatively you could try to pass in the form.resetForm({ values: myValues }, { force: true }); I will investigate this, but I believe we have a test for it already which is weird. |
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
-
I've been trying to reset the size of a field array to its original size after resetting the form, but so far, I have not been successful. I've also tried reading the docs, and I'm just not able to find an answer to my problem.
For context, I'm using the nuxt module for vee-validate:
And I'm not sure if this is useful information, but the form is located in a modal component, which is rendered inside the
<ClientOnly />
tag. This is what I've tried so far:All of these attempts yield the same result. They only clear the field values, but they don't reset the array size. How do I address this problem?
Beta Was this translation helpful? Give feedback.
All reactions