wizard passing extra steps issue updated

This commit is contained in:
batuhanbas
2020-02-02 21:05:11 +03:00
parent 6e3c1340ae
commit 9fae62e3b8
8 changed files with 24 additions and 30 deletions

View File

@ -39,8 +39,6 @@ const app = new Vue({
},
methods: {
next() {
if (this.active++ > 3);
}
}
});

View File

@ -106,9 +106,5 @@ const app = new Vue({
.catch(error => {
});
},
next() {
if (this.active++ > 3);
}
}
});

View File

@ -31,13 +31,11 @@ const app = new Vue({
data: function () {
return {
active: 3
active: 3,
}
},
methods: {
next() {
if (this.active++ > 3);
}
}
});

View File

@ -78,9 +78,5 @@ const app = new Vue({
this.show = true;
},
next() {
if (this.active++ > 3);
}
}
});