-
-
Notifications
You must be signed in to change notification settings - Fork 5k
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
Enable component async loading #2830
Comments
If as you said in https://github.com/vuejs/vue-router/pull/2140/files#r298066005 , the navigation guards do not work, provide a boiled down repro to show your point |
https://codesandbox.io/s/vue-template-971d5 Go to the default path:
Go to
Due to docs syntax used in |
Ah, I see now. Let me explain what happens: The loader only appears after navigation is confirmed, while the network request is waiting for the component. This is exactly what we want for guards, the whole point is to not use the component if the navigation is cancelled, which could eventually prevent a network request as well |
So you can't handle component loading in
|
I just said that you can:
I don't understand the last statement as it's completely out of context, the factory syntax for lazy loaded components was introduced in 2.4.0, so you need at least that version of Vue to use it |
So how achieve displaying loading during request for component or handle rejection of component import for example from bad internet connection and don't lose navigation guards? Now it seems to impossible. Edit: |
There is an example about handling the waiting state in between navigations at https://github.com/chrisvfritz/vue-enterprise-boilerplate/blob/master/src/router/index.js It's something that will improve in next version and we also need to provide a better documentation for that topic |
Thank you. Good to hear that this will be improved in next version :) |
https://codesandbox.io/s/vue-template-bys6q I tried to handle loading by |
Yeah, that's because in the root Vue, you are displaying the |
So I have to display whole page loader? If I have several components like |
What problem does this feature solve?
For now there is no full support for
vue
async components
described here:https://vuejs.org/v2/guide/components-dynamic-async.html#Handling-Loading-State
Solution presented in:
#2140
https://github.com/chrisvfritz/vue-enterprise-boilerplate/blob/master/src/router/routes.js
is solving problem only partially because of such construction
beforeRouteEnter
etc guards are not launched due to fact that component is resolved inside another component after route updateThis problem is also mentioned here:
https://forum.vuejs.org/t/vue-router-async-component-loading-error-components-never-shown/40618/2
What does the proposed API look like?
Update doc with information that this syntax is not working with
vue-router
.The text was updated successfully, but these errors were encountered: