0👍
You have a method checkForm
but it seems you never call it.
Just change your next
and prev
methods to use that method as follows:
prev() {
if(this.checkForm()) {
this.step--;
}
},
next() {
if(this.checkForm()) {
this.step++;
}
},
Source:stackexchange.com