Skip to content

Commit 96eb745

Browse files
authoredAug 30, 2022
fix(hmr): fix HMR for nested non-SFC components (#4077)
1 parent 0739f89 commit 96eb745

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed
 

‎packages/runtime-core/src/componentProps.ts

+8-5
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,13 @@ export function initProps(
192192
instance.attrs = attrs
193193
}
194194

195+
function isInHmrContext(instance: ComponentInternalInstance | null) {
196+
while (instance) {
197+
if (instance.type.__hmrId) return true
198+
instance = instance.parent
199+
}
200+
}
201+
195202
export function updateProps(
196203
instance: ComponentInternalInstance,
197204
rawProps: Data | null,
@@ -211,11 +218,7 @@ export function updateProps(
211218
// always force full diff in dev
212219
// - #1942 if hmr is enabled with sfc component
213220
// - vite#872 non-sfc component used by sfc component
214-
!(
215-
__DEV__ &&
216-
(instance.type.__hmrId ||
217-
(instance.parent && instance.parent.type.__hmrId))
218-
) &&
221+
!(__DEV__ && isInHmrContext(instance)) &&
219222
(optimized || patchFlag > 0) &&
220223
!(patchFlag & PatchFlags.FULL_PROPS)
221224
) {

0 commit comments

Comments
 (0)
Please sign in to comment.