vue-form-wizard icon indicating copy to clipboard operation
vue-form-wizard copied to clipboard

Next button remain disabled when reset the wizard

Open pandisoft opened this issue 6 years ago • 0 comments

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)
      },

pandisoft avatar Jul 24 '19 17:07 pandisoft