File tree 1 file changed +16
-0
lines changed
1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -144,6 +144,22 @@ export function createComponent (
144
144
145
145
data = data || { }
146
146
147
+ // recycle-list optimized render function for extracting cell-slot
148
+ // template. This is essentailly inline expanding instead of creating
149
+ // an actual instance.
150
+ // https://github.com/Hanks10100/weex-native-directive/tree/master/component
151
+ // $flow-disable-line
152
+ if ( __WEEX__ && data . attrs [ '@isInRecycleList' ] ) {
153
+ const altRender = Ctor . options [ '@render' ]
154
+ if ( altRender ) {
155
+ return altRender . call (
156
+ context ,
157
+ context . $createElement ,
158
+ data . attrs
159
+ )
160
+ }
161
+ }
162
+
147
163
// resolve constructor options in case global mixins are applied after
148
164
// component constructor creation
149
165
resolveConstructorOptions ( Ctor )
You can’t perform that action at this time.
0 commit comments