BinarCode / vue-form-wizard

Vue.js 2 wizard
https://binarcode.github.io/vue-form-wizard/#/
MIT License
1.11k stars 243 forks source link

How to enable all tabs? #368

Open pnavarretec01 opened 3 years ago

pnavarretec01 commented 3 years ago

I need to enable all the tabs without the need to press the "next" button, is it possible to do that? If the answer is yes, how is it possible?

yogithesymbian commented 1 year ago

i forgot where is the issue that already answered .

here to solve

mounted() {
    const { tabs } = this.$refs.wizard
    tabs.forEach((tab) => (tab.checked = true))
    this.$refs.wizard.maxStep = tabs.length
  },
<form-wizard
...
...
      ref="wizard"
...
..
/>