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 3cb4db2 commit 9e1cc4fCopy full SHA for 9e1cc4f
packages/runtime-core/src/renderer.ts
@@ -961,7 +961,8 @@ function baseCreateRenderer(
961
// which also requires the correct parent container
962
!isSameVNodeType(oldVNode, newVNode) ||
963
// - In the case of a component, it could contain anything.
964
- oldVNode.shapeFlag & (ShapeFlags.COMPONENT | ShapeFlags.TELEPORT))
+ oldVNode.shapeFlag &
965
+ (ShapeFlags.COMPONENT | ShapeFlags.TELEPORT | ShapeFlags.SUSPENSE))
966
? hostParentNode(oldVNode.el)!
967
: // In other cases, the parent container is not actually used so we
968
// just pass the block element here to avoid a DOM parentNode call.
0 commit comments