You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AsyncComponent teleport element should be rendered and included in ctx.teleports.
What is actually happening?
It is not included in ctx.teleports, but appears in ctx.__teleportBuffers (check server logs).
I was trying to support teleports in vite-ssr library and I found this issue when using async routes in vue-router. Turns out any async component triggers it.
If you remove the async setup from AsyncComponent, it starts working.
The text was updated successfully, but these errors were encountered:
Version
3.2.6
Reproduction link
https://github.com/frandiox/vue-teleport-ssr-issue
Steps to reproduce
What is expected?
AsyncComponent
teleport element should be rendered and included inctx.teleports
.What is actually happening?
It is not included in
ctx.teleports
, but appears inctx.__teleportBuffers
(check server logs).I was trying to support teleports in
vite-ssr
library and I found this issue when using async routes invue-router
. Turns out any async component triggers it.If you remove the
async setup
fromAsyncComponent
, it starts working.The text was updated successfully, but these errors were encountered: