* Go to previous step
()
| 67 | * Go to previous step |
| 68 | */ |
| 69 | previous() { |
| 70 | if (this.currentStep > 0) { |
| 71 | this.currentStep--; |
| 72 | this.saveProgress(); |
| 73 | this.emit('step', this.currentStep); |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * Skip to a specific step |
no test coverage detected