-
-
Notifications
You must be signed in to change notification settings - Fork 33.7k
Transitioned elements lose v-ref
#536
New issue
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
Comments
v-el
v-ref
Thanks for reporting - this is caused by a change to the transition implementation (components being transitioned out are destroyed after the transition finishes) |
Interesting. In my app the state changes during the transition, so you can see things changing as the element transitions out. Is there anyway to disconnect the data bindings before the transition starts? |
The latest commit on |
Much better, thanks! However the event listeners still seem to be listening (registered through the |
Currently only directives are locked so no DOM updates will happen during the transition - events are expected to work until the component is destroyed. Are these event listeners breaking your logic for some reason? |
I am using Removing |
I reworked Let me know if this causes #488 to happen again... |
Awesome, seems to be working great! |
See this codepen: http://codepen.io/anon/pen/ovcpq
The text was updated successfully, but these errors were encountered: