Skip to content

Commit

Permalink
fix: add missing asyncMeta during VNode cloning (vuejs#7861)
Browse files Browse the repository at this point in the history
  • Loading branch information
luisatmaniak authored and hefeng committed Jan 25, 2019
1 parent 2675fd2 commit d034092
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 d034092

Please sign in to comment.