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 d53e157 commit f17a82cCopy full SHA for f17a82c
packages/runtime-core/src/renderer.ts
@@ -835,7 +835,8 @@ function baseCreateRenderer(
835
areChildrenSVG,
836
slotScopeIds
837
)
838
- if (__DEV__ && parentComponent && parentComponent.type.__hmrId) {
+ if (__DEV__) {
839
+ // necessary for HMR
840
traverseStaticChildren(n1, n2)
841
}
842
} else if (!optimized) {
@@ -1110,7 +1111,8 @@ function baseCreateRenderer(
1110
1111
isSVG,
1112
1113
1114
1115
1116
1117
} else if (
1118
// #2080 if the stable fragment has a key, it's a <template v-for> that may
0 commit comments