@@ -8,6 +8,7 @@ import { installRenderHelpers } from '../instance/render-helpers/index'
8
8
9
9
import {
10
10
isDef ,
11
+ isTrue ,
11
12
camelize ,
12
13
emptyObject ,
13
14
validateProp
@@ -28,14 +29,35 @@ function FunctionalRenderContext (
28
29
this . listeners = data . on || emptyObject
29
30
this . injections = resolveInject ( options . inject , parent )
30
31
this . slots = ( ) => resolveSlots ( children , parent )
32
+
33
+ // ensure the createElement function in functional components
34
+ // gets a unique context - this is necessary for correct named slot check
35
+ const contextVm = Object . create ( parent )
36
+ const isCompiled = isTrue ( options . _compiled )
37
+ const needNormalization = ! isCompiled
38
+
31
39
// support for compiled functional template
32
- if ( options . _compiled ) {
40
+ if ( isCompiled ) {
41
+ // exposing constructor and $options for renderStatic() because it needs
42
+ // to cache the rendered trees on shared options
33
43
this . constructor = Ctor
34
44
this . $options = options
35
- this . _c = parent . _c
45
+ // pre-resolve slots for renderSlot()
36
46
this . $slots = this . slots ( )
37
47
this . $scopedSlots = data . scopedSlots || emptyObject
38
48
}
49
+
50
+ if ( options . _scopeId ) {
51
+ this . _c = ( a , b , c , d ) => {
52
+ const vnode : ?VNode = createElement ( contextVm , a , b , c , d , needNormalization )
53
+ if ( vnode ) {
54
+ vnode . fnScopeId = options . _scopeId
55
+ }
56
+ return vnode
57
+ }
58
+ } else {
59
+ this . _c = ( a , b , c , d ) => createElement ( contextVm , a , b , c , d , needNormalization )
60
+ }
39
61
}
40
62
41
63
installRenderHelpers ( FunctionalRenderContext . prototype )
@@ -58,25 +80,25 @@ export function createFunctionalComponent (
58
80
if ( isDef ( data . attrs ) ) mergeProps ( props , data . attrs )
59
81
if ( isDef ( data . props ) ) mergeProps ( props , data . props )
60
82
}
61
- // ensure the createElement function in functional components
62
- // gets a unique context - this is necessary for correct named slot check
63
- const _contextVm = Object . create ( contextVm )
64
- const h = ( a , b , c , d ) => createElement ( _contextVm , a , b , c , d , true )
83
+
65
84
const renderContext = new FunctionalRenderContext (
66
85
data ,
67
86
props ,
68
87
children ,
69
88
contextVm ,
70
89
Ctor
71
90
)
72
- const vnode = options . render . call ( null , h , renderContext )
91
+
92
+ const vnode = options . render . call ( null , renderContext . _c , renderContext )
93
+
73
94
if ( vnode instanceof VNode ) {
74
95
vnode . functionalContext = contextVm
75
96
vnode . functionalOptions = options
76
97
if ( data . slot ) {
77
98
( vnode . data || ( vnode . data = { } ) ) . slot = data . slot
78
99
}
79
100
}
101
+
80
102
return vnode
81
103
}
82
104
0 commit comments