chore: remove unused args passed to ssrRender

This commit is contained in:
Evan You 2023-04-05 11:16:08 +08:00
parent 05f94cf7b0
commit 2a9e379655
1 changed files with 1 additions and 11 deletions

View File

@ -182,17 +182,7 @@ function renderComponentSubTree(
// set current rendering instance for asset resolution
const prev = setCurrentRenderingInstance(instance)
try {
ssrRender(
instance.proxy,
push,
instance,
attrs,
// compiler-optimized bindings
instance.props,
instance.setupState,
instance.data,
instance.ctx
)
ssrRender(instance.proxy, push, instance, attrs)
} finally {
setCurrentRenderingInstance(prev)
}