-
-
Notifications
You must be signed in to change notification settings - Fork 33.7k
Reusable transitions with vue-router break in vue@2.1.6 (last one). Can reproduce. #4545
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
I don't see the issue. 1 and 2 yields the same result |
@posva |
ooh, one transition goes to the right instead of the left |
I have a similar problem app.vue
pageA.vue
component container.vue
transition component seems slow down one step when i use keep-alive and put transition component in each route view this is my spa transition snapshots |
With vue@2.1.6+ I have also problems with the transitions.
<transition
enter-active-class="transitionEnter"
leave-active-class="transitionLeave"
>
<div v-show="show">
<slot></slot>
</div>
</transition> First I see the empty component and after start the transition, I hope this will be fixed in next version :) |
My problem remains even though upgrade to 2.1.8, maybe I should provide a demo |
Uh oh!
There was an error while loading. Please reload this page.
My initial purpose is to make transition in vue-router/examples/transitions reusable.
Before change codes, transition works as a's expected:
Expected https://jsfiddle.net/feipigzi/uqotvzft/3/
Click
/parent
and/parent/foo
, make slide left or right transition.After make resuable, unexpected:
Unexpected: https://jsfiddle.net/feipigzi/uqotvzft/
And I try to use older version vue.js, work as expected
Expected: https://jsfiddle.net/feipigzi/uqotvzft/2/
Increase version, unexpected again:
Unexpected: https://jsfiddle.net/feipigzi/uqotvzft/1
The text was updated successfully, but these errors were encountered: