mirror of https://github.com/vuejs/core.git
fix: type instead of rawType
Co-authored-by: edison <daiwei521@126.com>
This commit is contained in:
parent
30d1f32b83
commit
d9444e5523
|
@ -68,7 +68,7 @@ function getTargetType(value: Target) {
|
|||
if (value[ReactiveFlags.SKIP] || !Object.isExtensible(value)) {
|
||||
return TargetType.INVALID
|
||||
}
|
||||
const rawType = toRawType(value)
|
||||
const type = targetTypeMap(toRawType(value))
|
||||
let type = targetTypeMap(rawType)
|
||||
|
||||
// If we got INVALID but the value is actually a plain object (even if its raw type was changed
|
||||
|
|
Loading…
Reference in New Issue