mirror of https://github.com/vuejs/core.git
fix(ssr): fix suspense hydration of fallback content (#7188)
This commit is contained in:
parent
213eba479c
commit
60415b5d67
|
|
@ -464,7 +464,7 @@ function createSuspenseBoundary(
|
|||
timeout: typeof timeout === 'number' ? timeout : -1,
|
||||
activeBranch: null,
|
||||
pendingBranch: null,
|
||||
isInFallback: true,
|
||||
isInFallback: !isHydrating,
|
||||
isHydrating,
|
||||
isUnmounted: false,
|
||||
effects: [],
|
||||
|
|
|
|||
Loading…
Reference in New Issue