@@ -104,26 +104,20 @@ export async function mountSuspended<T>(
104
104
name : 'MountSuspendedComponent' ,
105
105
...component ,
106
106
render : render
107
- ? ( _ctx : any , ...args : any [ ] ) => {
108
- // add all _ctx properties to renderContext
109
- // the renderContext must remain intact, otherwise the emits don't work
110
- for ( const key in _ctx ) {
107
+ ? function ( this : any , _ctx : any , ...args : any [ ] ) {
108
+ for ( const key in props || { } ) {
111
109
renderContext [ key ] = _ctx [ key ]
112
110
}
113
- return render . apply ( _ctx , [
114
- renderContext ,
115
- ... args ,
116
- ] )
111
+ for ( const key in setupState || { } ) {
112
+ renderContext [ key ] = setupState [ key ]
113
+ }
114
+ return render . call ( this , renderContext , ... args )
117
115
}
118
116
: undefined ,
119
- setup : setup
120
- ? ( props : Record < string , any > ) =>
121
- wrappedSetup ( props , setupContext )
122
- : undefined ,
117
+ setup : setup ? ( props : Record < string , any > ) => wrappedSetup ( props , setupContext ) : undefined ,
123
118
}
124
119
125
- return ( ) =>
126
- h ( clonedComponent , { ...props , ...attrs } , slots )
120
+ return ( ) => h ( clonedComponent , { ...props , ...attrs } , slots )
127
121
} ,
128
122
} ) ,
129
123
}
0 commit comments