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 25595f5 commit 0f45875Copy full SHA for 0f45875
packages/runtime-core/src/renderer.ts
@@ -1098,7 +1098,9 @@ function baseCreateRenderer(
1098
dynamicChildren &&
1099
// #2715 the previous fragment could've been a BAILed one as a result
1100
// of renderSlot() with no valid children
1101
- n1.dynamicChildren
+ n1.dynamicChildren &&
1102
+ // #9200 in some case stable fragment in deep unstable slot
1103
+ n1?.children?.length === n2?.children?.length
1104
) {
1105
// a stable fragment (template root or <template v-for>) doesn't need to
1106
// patch children order, but it may contain dynamicChildren.
0 commit comments