@@ -24,9 +24,9 @@ export default class VNode {
24
24
asyncMeta: Object | void ;
25
25
isAsyncPlaceholder: boolean ;
26
26
ssrContext: Object | void ;
27
- functionalContext : Component | void ; // real context vm for functional nodes
28
- functionalOptions : ?ComponentOptions ; // for SSR caching
29
- functionalScopeId : ?string ; // functioanl scope id support
27
+ fnContext : Component | void ; // real context vm for functional nodes
28
+ fnOptions : ?ComponentOptions ; // for SSR caching
29
+ fnScopeId : ?string ; // functioanl scope id support
30
30
31
31
constructor (
32
32
tag ? : string ,
@@ -45,9 +45,9 @@ export default class VNode {
45
45
this . elm = elm
46
46
this . ns = undefined
47
47
this . context = context
48
- this . functionalContext = undefined
49
- this . functionalOptions = undefined
50
- this . functionalScopeId = undefined
48
+ this . fnContext = undefined
49
+ this . fnOptions = undefined
50
+ this . fnScopeId = undefined
51
51
this . key = data && data . key
52
52
this . componentOptions = componentOptions
53
53
this . componentInstance = undefined
@@ -101,6 +101,9 @@ export function cloneVNode (vnode: VNode, deep?: boolean): VNode {
101
101
cloned . isStatic = vnode . isStatic
102
102
cloned . key = vnode . key
103
103
cloned . isComment = vnode . isComment
104
+ cloned . fnContext = vnode . fnContext
105
+ cloned . fnOptions = vnode . fnOptions
106
+ cloned . fnScopeId = vnode . fnScopeId
104
107
cloned . isCloned = true
105
108
if ( deep ) {
106
109
if ( vnode . children ) {
0 commit comments