Skip to content

Commit f841e29

Browse files
authored
Merge pull request #1 from otrigg/otrigg-patch-1
Enable "next button" if step is completed.
2 parents c9aff78 + f16b427 commit f841e29

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/HorizontalStepper.vue

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,11 @@ export default {
151151
if (!back) {
152152
this.$emit("completed-step", this.previousStep);
153153
}
154+
155+
if(this.steps[index].completed) {
156+
this.canContinue = true;
157+
}
158+
154159
}
155160
this.$emit("active-step", this.currentStep);
156161
},

0 commit comments

Comments
 (0)