-
-
Notifications
You must be signed in to change notification settings - Fork 8.8k
Closed
Labels
🔨 p3-minor-bugPriority 3: this fixes a bug, but is an edge case that only affects very specific usage.Priority 3: this fixes a bug, but is an edge case that only affects very specific usage.🐞 bugSomething isn't workingSomething isn't workingscope: reactivity
Description
Version
3.0.5
Reproduction link
https://jsfiddle.net/57no3akz/9/
Steps to reproduce
const {shallowReadonly, isProxy} = Vue
let origin = new Map([[1, {a: 1}]])
let proxy = shallowReadonly(origin)
console.log(isProxy(proxy.get(1)))
What is expected?
return the origin object
What is actually happening?
return the proxy of the origin object
Metadata
Metadata
Assignees
Labels
🔨 p3-minor-bugPriority 3: this fixes a bug, but is an edge case that only affects very specific usage.Priority 3: this fixes a bug, but is an edge case that only affects very specific usage.🐞 bugSomething isn't workingSomething isn't workingscope: reactivity