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
@values
I have an instance of v-selectmenu that is toggled on/off using the Vuejs v-if directive. I also listen to the @values event on this component.
v-if
<v-selectmenu v-if="condition" @values="onValuesEvent" ...
If the component is hidden and re-rendered when condition changes from true to false to true, the @values event is no longer emitted!
condition
true
false
The text was updated successfully, but these errors were encountered:
I tried v-if set to true => false => true, @values event still working in my case.
true => false => true
You can upload your code to somewhere like jsFiddle, CodePen, then i can see what happen.
Sorry, something went wrong.
You can try the first example in v-selectmenu CodePen.
Thanks for the quick reply @TerryZ , I will prepare a CodePen that demonstrates the issue soon!
No branches or pull requests
Description of bug
I have an instance of v-selectmenu that is toggled on/off using the Vuejs
v-if
directive. I also listen to the @values event on this component.If the component is hidden and re-rendered when
condition
changes fromtrue
tofalse
totrue
, the@values
event is no longer emitted!The text was updated successfully, but these errors were encountered: