Currently, I'm working on implementing a vue form wizard from the repository: https://github.com/BinarCode/vue-form-wizard
My challenge is to include a button in the second tab-content itself instead of having it placed in the footer.
I attempted the following code snippet but unfortunately, it did not produce the desired outcome:
<tab-content title="second tab">
<button @click="previousTab">Take me back to the previous tab</button>
</tab-content>
Could someone provide guidance on how to correctly insert a previous button within the content of my second tab in StepForm.vue?