Skip to content

Commit 43b2724

Browse files
committedDec 6, 2023
fix: avoid enumerating keys on render context
1 parent dc93e00 commit 43b2724

File tree

1 file changed

+8
-14
lines changed

1 file changed

+8
-14
lines changed
 

‎src/runtime-utils/mount.ts

+8-14
Original file line numberDiff line numberDiff line change
@@ -104,26 +104,20 @@ export async function mountSuspended<T>(
104104
name: 'MountSuspendedComponent',
105105
...component,
106106
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 || {}) {
111109
renderContext[key] = _ctx[key]
112110
}
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)
117115
}
118116
: 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,
123118
}
124119

125-
return () =>
126-
h(clonedComponent, { ...props, ...attrs }, slots)
120+
return () => h(clonedComponent, { ...props, ...attrs }, slots)
127121
},
128122
}),
129123
}

0 commit comments

Comments
 (0)