On a multi step form with hidden elements using v-if, the form elements that appear after the initial page load don't seem to be validating even though the DOM shows data-vv-id. No rules are being triggered. And in the vue console it's not showing the fields that are hidden on load.
Do you mind creating a demo for the issue?
Uploading a quick screencast for speed as I'm in the zone right now :) , link will expire for security.
http://drop.subbly.co/0w2U1n442w15
Video is now uploaded and expires in a day @logaretm
This is a small gotcha in Vue.js, well at least with vee-validate. The issue is Vue reuses the input element to be more efficient. You can read more about it here:
https://vuejs.org/v2/guide/conditional.html#Controlling-Reusable-Elements-with-key
You can fix it easily by adding key attribute on your inputs with different values to disable this behavior.
Here is a simplified example with the fixed behavior:
https://jsfiddle.net/logaretm/sxemf8g1/
Will be happy to reopnen if this is not the case.
P.S: nice background music 😄
Bingo! That worked thank you 😄 !
And thanks hahaha
Most helpful comment
This is a small gotcha in Vue.js, well at least with
vee-validate. The issue is Vue reuses the input element to be more efficient. You can read more about it here:https://vuejs.org/v2/guide/conditional.html#Controlling-Reusable-Elements-with-key
You can fix it easily by adding
keyattribute on your inputs with different values to disable this behavior.Here is a simplified example with the fixed behavior:
https://jsfiddle.net/logaretm/sxemf8g1/
Will be happy to reopnen if this is not the case.
P.S: nice background music 😄