[Vuejs]-Modal is closing after submit form even if I have errors Vuejs

1👍

I read the documentation again and I found a solution for this.
I add this bvModalEvt.preventDefault()

addCustomer(bvModalEvt) {
    if (this.$v.$invalid) {
        bvModalEvt.preventDefault()
        console.log('Error');
    }else{
...code...

Leave a comment