I am trying to set the default option to: Additional Info, instead of: Personal details
I have looked everywhere for documentation on this but cannot find any. Can someone please assist me with this? Thank you.
https://jsfiddle.net/bt5dhqtf/98/
<div id="app">
<div>
<form-wizard @on-complete="onComplete"
shape="square"
color="#3498db">
<tab-content title="Personal details"
icon="ti-user">
My first tab content
</tab-content>
<tab-content title="Additional Info"
icon="ti-settings">
My second tab content
</tab-content>
<tab-content title="Last step"
icon="ti-check">
Yuhuuu! This seems pretty damn simple
</tab-content>
</form-wizard>
</div>
</div>
//
Vue.use(VueFormWizard)
new Vue({
el: '#app',
methods: {
onComplete: function(){
alert('Yay. Done!');
}
}
})