We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb484f4 commit 05d9b42Copy full SHA for 05d9b42
packages/runtime-core/src/renderer.ts
@@ -2418,6 +2418,9 @@ function baseCreateRenderer(
2418
2419
const getNextHostNode: NextFn = vnode => {
2420
if (vnode.shapeFlag & ShapeFlags.COMPONENT) {
2421
+ if ((vnode.type as ConcreteComponent).__vapor) {
2422
+ return hostNextSibling((vnode.component! as any).block)
2423
+ }
2424
return getNextHostNode(vnode.component!.subTree)
2425
}
2426
if (__FEATURE_SUSPENSE__ && vnode.shapeFlag & ShapeFlags.SUSPENSE) {
0 commit comments