parent
57642fac8f
commit
499bc0bfc4
@ -153,7 +153,12 @@ export function updateProps(
|
|||||||
const rawCurrentProps = toRaw(props)
|
const rawCurrentProps = toRaw(props)
|
||||||
const [options] = normalizePropsOptions(instance.type)
|
const [options] = normalizePropsOptions(instance.type)
|
||||||
|
|
||||||
if ((optimized || patchFlag > 0) && !(patchFlag & PatchFlags.FULL_PROPS)) {
|
if (
|
||||||
|
// always force full diff if hmr is enabled
|
||||||
|
!(__DEV__ && instance.type.__hmrId) &&
|
||||||
|
(optimized || patchFlag > 0) &&
|
||||||
|
!(patchFlag & PatchFlags.FULL_PROPS)
|
||||||
|
) {
|
||||||
if (patchFlag & PatchFlags.PROPS) {
|
if (patchFlag & PatchFlags.PROPS) {
|
||||||
// Compiler-generated props & no keys change, just set the updated
|
// Compiler-generated props & no keys change, just set the updated
|
||||||
// the props.
|
// the props.
|
||||||
|
@ -1451,9 +1451,6 @@ function baseCreateRenderer(
|
|||||||
nextVNode: VNode,
|
nextVNode: VNode,
|
||||||
optimized: boolean
|
optimized: boolean
|
||||||
) => {
|
) => {
|
||||||
if (__DEV__ && instance.type.__hmrId) {
|
|
||||||
optimized = false
|
|
||||||
}
|
|
||||||
nextVNode.component = instance
|
nextVNode.component = instance
|
||||||
const prevProps = instance.vnode.props
|
const prevProps = instance.vnode.props
|
||||||
instance.vnode = nextVNode
|
instance.vnode = nextVNode
|
||||||
|
Loading…
Reference in New Issue
Block a user