vue过渡:为什么在嵌套子路由之间切换时没有过渡动画
当我在/test/c
和/test/d
之间切换时,即将消失的组件而不是在DOM树中,我想是与他们有一个常见的父组件。我曾期望像/a
到/b
离开动画的/b
如何解决此问题
。 codesandbox.io/s/hardcore-shamir-kr9608?file=/src/app.vue“ rel =“ nofollow noreferrer”> codesandbox.io
When I switching between /test/c
and /test/d
, about to disappear component not in the DOM Tree, I guess is it something to do with them having a common parent component. I had expected like from /a
to /b
leave's component have leaving animation, how can I fixed this problem?
Here is demo: codesandbox.io
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须将
键
添加到父< router-view:key =“ $ route.path”>
You must add a
key
to the parent<router-view :key="$route.path">