Skip to content

Commit

Permalink
fix: add missing asyncMeta during VNode cloning (#7861)
Browse files Browse the repository at this point in the history
  • Loading branch information
luisatmaniak authored and yyx990803 committed Mar 23, 2018
1 parent 1bd6196 commit 8227fb3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/core/vdom/vnode.js
Expand Up @@ -103,6 +103,7 @@ export function cloneVNode (vnode: VNode): VNode {
cloned.fnContext = vnode.fnContext
cloned.fnOptions = vnode.fnOptions
cloned.fnScopeId = vnode.fnScopeId
cloned.asyncMeta = vnode.asyncMeta
cloned.isCloned = true
return cloned
}

0 comments on commit 8227fb3

Please sign in to comment.