Skip to content

Commit 8227fb3

Browse files
luisatmaniakyyx990803
authored andcommitted
fix: add missing asyncMeta during VNode cloning (#7861)
1 parent 1bd6196 commit 8227fb3

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/core/vdom/vnode.js

+1
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ export function cloneVNode (vnode: VNode): VNode {
103103
cloned.fnContext = vnode.fnContext
104104
cloned.fnOptions = vnode.fnOptions
105105
cloned.fnScopeId = vnode.fnScopeId
106+
cloned.asyncMeta = vnode.asyncMeta
106107
cloned.isCloned = true
107108
return cloned
108109
}

0 commit comments

Comments
 (0)