We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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 是同步的,但 createComponentLoader 得到的 loader 的返回值是 ComponentClass|Promise<ComponentClass>。目前只支持返回 ComponentClass,后者渲染其 placeholder,问题是:是否要支持 Promise<ComponentClass>?目前主要考虑:
ComponentClass|Promise<ComponentClass>
ComponentClass
Promise<ComponentClass>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
目前整个 ssr 是同步的,但 createComponentLoader 得到的 loader 的返回值是
ComponentClass|Promise<ComponentClass>
。目前只支持返回ComponentClass
,后者渲染其 placeholder,问题是:是否要支持Promise<ComponentClass>
?目前主要考虑:The text was updated successfully, but these errors were encountered: