We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I generate tabs from a list like this:
<tabs nav-style="tabs" v-model="activeTab"> <tab v-for="(myTab) in myTabs" v-bind:header="myTab.name"> ...
Then I can add and remove new tabs. However, on removal (like this.myTabs.splice(0, 1)) the headers don't get properly updated.
this.myTabs.splice(0, 1)
I guess this is because they are explicitly added on created, but not being removed in beforeDestroy in the Tab component
created
beforeDestroy
The text was updated successfully, but these errors were encountered:
Same error!
Sorry, something went wrong.
Same here.
I wrote a Pull Request, but i'm not sure this repository is still maintained :(
No branches or pull requests
When I generate tabs from a list like this:
Then I can add and remove new tabs. However, on removal (like
this.myTabs.splice(0, 1)
) the headers don't get properly updated.I guess this is because they are explicitly added on
created
, but not being removed inbeforeDestroy
in the Tab componentThe text was updated successfully, but these errors were encountered: