The virtual node of each element in the development environment is not updated
Version
3.0.5
Reproduction link
https://jsfiddle.net/tzhbwvjy/4/
Steps to reproduce
What is expected?
Console output should be false
What is actually happening?
Output true
const patchElement = ( n1: VNode, n2: VNode, parentComponent: ComponentInternalInstance | null, parentSuspense: SuspenseBoundary | null, isSVG: boolean, optimized: boolean ) => { const el = (n2.el = n1.el!) if (DEV || FEATURE_PROD_DEVTOOLS) { el.__vnode = n2 } ......