Validating form inside a modal with Vuelidate and Bootstrap Vue Validating form inside a modal with Vuelidate and Bootstrap Vue vue.js vue.js

Validating form inside a modal with Vuelidate and Bootstrap Vue


In your clearForm method just replace the call to $reset() by:

this.$nextTick(() => { this.$v.$reset(); })

There some cases when you need to call $reset() after the DOM has been updated and the data changed, and this is achieved with nextTick