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

How to enable all tabs?

Open pnavarretec01 opened this issue 3 years ago • 1 comments

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?

pnavarretec01 avatar Jun 02 '21 15:06 pnavarretec01

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"
...
..
/>

yogithesymbian avatar Dec 15 '22 05:12 yogithesymbian