Mutating a non reactive object after mutating a reactive one, applies the mutation to the reactive one as well
Vue version
3.2.47
Link to minimal reproduction
Steps to reproduce
Click the Increment obj.count button, then click the Increment proxy.count button.
Then click Increment obj then proxy, Increment proxy then obj.
What is expected?
Mutating a non reactive object shouldn't affect the reactive proxy.
What is actually happening?
Mutating a non-reactive object, stores the mutation and applies it when the proxy is mutated.
System Info
No response
Any additional comments?
No response