Skip to content
Permalink
Browse files
fix(ssr): always hydrate children for HMR (#5406)
fix #5405
  • Loading branch information
antfu committed Feb 12, 2022
1 parent 15adf25 commit 0342fae
Showing 1 changed file with 2 additions and 1 deletion.
@@ -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')
}

0 comments on commit 0342fae

Please sign in to comment.