File tree 1 file changed +8
-5
lines changed
packages/runtime-core/src
1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -192,6 +192,13 @@ export function initProps(
192
192
instance . attrs = attrs
193
193
}
194
194
195
+ function isInHmrContext ( instance : ComponentInternalInstance | null ) {
196
+ while ( instance ) {
197
+ if ( instance . type . __hmrId ) return true
198
+ instance = instance . parent
199
+ }
200
+ }
201
+
195
202
export function updateProps (
196
203
instance : ComponentInternalInstance ,
197
204
rawProps : Data | null ,
@@ -211,11 +218,7 @@ export function updateProps(
211
218
// always force full diff in dev
212
219
// - #1942 if hmr is enabled with sfc component
213
220
// - 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 ) ) &&
219
222
( optimized || patchFlag > 0 ) &&
220
223
! ( patchFlag & PatchFlags . FULL_PROPS )
221
224
) {
You can’t perform that action at this time.
0 commit comments