We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0db336f commit 69a2accCopy full SHA for 69a2acc
packages/runtime-core/src/renderer.ts
@@ -1242,19 +1242,18 @@ function baseCreateRenderer(
1242
const placeholder = (instance.subTree = createVNode(Comment))
1243
processCommentNode(null, placeholder, container!, anchor)
1244
}
1245
- return
+ } else {
1246
+ setupRenderEffect(
1247
+ instance,
1248
+ initialVNode,
1249
+ container,
1250
+ anchor,
1251
+ parentSuspense,
1252
+ namespace,
1253
+ optimized
1254
+ )
1255
1256
- setupRenderEffect(
- instance,
- initialVNode,
- container,
- anchor,
- parentSuspense,
- namespace,
- optimized
- )
1257
-
1258
if (__DEV__) {
1259
popWarningContext()
1260
endMeasure(instance, `mount`)
0 commit comments