Explorar o código

fix(hmr): static child traversal should only affect elements

Evan You %!s(int64=6) %!d(string=hai) anos
pai
achega
2bc6a8c1cf
Modificáronse 1 ficheiros con 6 adicións e 1 borrados
  1. 6 1
      packages/runtime-core/src/renderer.ts

+ 6 - 1
packages/runtime-core/src/renderer.ts

@@ -1984,7 +1984,12 @@ function baseCreateRenderer(
       for (let i = 0; i < ch1.length; i++) {
         const c1 = ch1[i]
         const c2 = ch2[i]
-        if (isVNode(c1) && isVNode(c2) && !c2.dynamicChildren) {
+        if (
+          isVNode(c1) &&
+          isVNode(c2) &&
+          c2.shapeFlag & ShapeFlags.ELEMENT &&
+          !c2.dynamicChildren
+        ) {
           if (c2.patchFlag <= 0) {
             c2.el = c1.el
           }