You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 1, 2023. It is now read-only.
i am trying to change the tab index based on user selection. i used the below code
this.$refs.lWizard.startIndex = 2;
but no reflection, Any Idea?
my code is :
<form-wizard class="pl-0 pr-0"
ref="lWizard"
color="rgba(var(--vs-primary), 1)"
title="null"
subtitle="null"
@on-complete="onComplete"
back-button-text="Go back!"
next-button-text="Go next!"
finish-button-text="Complete"
>
<vs-button class=" " size="large" @click="test();">choose tab
methods: {
onComplete: function(){
alert('Yay. Done!');
},
test: function(){
alert('Yay. !');
this.$refs.lWizard.startIndex = 2;
},
}
The text was updated successfully, but these errors were encountered: