-
-
Notifications
You must be signed in to change notification settings - Fork 523
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
SSR fails on async components #402
Comments
Any idea how to solve this issue? I'd like to publish a working solution for the apollo module on Nuxt. This issue happens after beta.19 release |
It will be solved with vuejs/vue#9017 |
13 tasks
Has this been fixed? |
See #469 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Steps to reproduce:
components
withHelloWorld: () => import('@/components/HelloWorld.vue'),
The origin of the stack trace:
/ssr/index.js
:vm.$createElement
is called with component name and passes it toresolveComponent
/ssr/utils.js
:resolveComponent
callsresolveAsset
that returns function (it is our function that returns import)getMergedDefinition
that passes it to Vue'smergeOptions
mereOptions
reads.options
from it, at this point child is undefined because options exists only on real componentsmergeOptions
is callingnormalizeProps
that attempts to read.props
The text was updated successfully, but these errors were encountered: