|
|
@@ -273,7 +273,8 @@ export function createHydrationFunctions(
|
|
|
// e.g. <option :value="obj">, <input type="checkbox" :true-value="1">
|
|
|
const forcePatchValue = (type === 'input' && dirs) || type === 'option'
|
|
|
// skip props & children if this is hoisted static nodes
|
|
|
- if (forcePatchValue || patchFlag !== PatchFlags.HOISTED) {
|
|
|
+ // #5405 in dev, always hydrate children for HMR
|
|
|
+ if (__DEV__ || forcePatchValue || patchFlag !== PatchFlags.HOISTED) {
|
|
|
if (dirs) {
|
|
|
invokeDirectiveHook(vnode, null, parentComponent, 'created')
|
|
|
}
|