vue-form-wizard
vue-form-wizard copied to clipboard
Next button remain disabled when reset the wizard
When the form is submitted / completed and you reset the wizard using (this.$refs.wizard.reset()) the next button remain disabled. not sure if this is a general issue or it appears on my side only. i fixed it by editing the source code on the reset method i added "this.loading = false"
reset () {
this.maxStep = 0
this.loading = false
this.tabs.forEach((tab) => {
tab.checked = false
})
this.navigateToTab(0)
},