-
-
Notifications
You must be signed in to change notification settings - Fork 33.7k
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
Components created with async component factory break on route change #9571
Labels
Comments
The code in this Pull Request works in my case. But I'm not sure if this is ready for production 😅 |
Updated my Pull Request #9572 pretty happy with the code now. |
maoberlehner
added a commit
to maoberlehner/vue
that referenced
this issue
Feb 26, 2019
kiku-jw
pushed a commit
to kiku-jw/vue
that referenced
this issue
Jun 18, 2019
This was referenced Aug 29, 2019
This was referenced Sep 22, 2019
Lostlover
pushed a commit
to Lostlover/vue
that referenced
this issue
Dec 10, 2019
This was referenced Jan 20, 2020
This was referenced Feb 24, 2020
This was referenced Mar 4, 2020
This was referenced Apr 15, 2020
This was referenced May 4, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Version
2.6.7
Reproduction link
https://codesandbox.io/s/239l9qnkxn
Steps to reproduce
What is expected?
The AsyncReady component should render after 7 seconds.
What is actually happening?
The AsyncLoading component is shown forever
The problem is that the
currentRenderingInstance
isHome
. After rendering theSomePage
route, the initialHome
instance (which is stored as theowner
of the factory) is destroyed. As soon as the factory callsforceRender
, triggering$forceUpdate()
on the owner does nothing because the oldHome
instance already was destroyed and a new one was created when navigating back toHome
.This is problematic on very slow connections when users click a link before all dynamic components were resolved or in case of automatic redirects which are triggered immediately after a page is loaded (after checking auth for example).
See: https://github.com/vuejs/vue/blob/dev/src/core/vdom/helpers/resolve-async-component.js#L58-L74
The text was updated successfully, but these errors were encountered: