mirror of https://github.com/vuejs/core.git
Revert "chore: remove unused args passed to ssrRender"
This reverts commit 2a9e379655.
This commit is contained in:
parent
955752951e
commit
b117b88448
|
|
@ -182,7 +182,17 @@ function renderComponentSubTree(
|
||||||
// set current rendering instance for asset resolution
|
// set current rendering instance for asset resolution
|
||||||
const prev = setCurrentRenderingInstance(instance)
|
const prev = setCurrentRenderingInstance(instance)
|
||||||
try {
|
try {
|
||||||
ssrRender(instance.proxy, push, instance, attrs)
|
ssrRender(
|
||||||
|
instance.proxy,
|
||||||
|
push,
|
||||||
|
instance,
|
||||||
|
attrs,
|
||||||
|
// compiler-optimized bindings
|
||||||
|
instance.props,
|
||||||
|
instance.setupState,
|
||||||
|
instance.data,
|
||||||
|
instance.ctx
|
||||||
|
)
|
||||||
} finally {
|
} finally {
|
||||||
setCurrentRenderingInstance(prev)
|
setCurrentRenderingInstance(prev)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue