Skip to content

Commit 96b9c13

Browse files
committed
fix(runtime-core): fix missed updates when passing text node to <components :is>
1 parent a374d7e commit 96b9c13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/runtime-core/src/vnode.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,7 @@ function _createVNode(
537537
currentBlock.push(cloned)
538538
}
539539
}
540-
cloned.patchFlag |= PatchFlags.BAIL
540+
cloned.patchFlag = PatchFlags.BAIL
541541
return cloned
542542
}
543543

0 commit comments

Comments
 (0)