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 99d70dd commit 7034198Copy full SHA for 7034198
packages/runtime-core/src/renderer.ts
@@ -2408,6 +2408,9 @@ function baseCreateRenderer(
2408
2409
const getNextHostNode: NextFn = vnode => {
2410
if (vnode.shapeFlag & ShapeFlags.COMPONENT) {
2411
+ if ((vnode.type as ConcreteComponent).__vapor) {
2412
+ return hostNextSibling((vnode.component! as any).block)
2413
+ }
2414
return getNextHostNode(vnode.component!.subTree)
2415
}
2416
if (__FEATURE_SUSPENSE__ && vnode.shapeFlag & ShapeFlags.SUSPENSE) {
0 commit comments