Skip to content

Commit 83ed926

Browse files
committed
fix: $set should respect properties on prototype chain
fix #6845
1 parent ee0e8b5 commit 83ed926

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

src/core/observer/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ export function set (target: Array<any> | Object, key: any, val: any): any {
196196
target.splice(key, 1, val)
197197
return val
198198
}
199-
if (hasOwn(target, key)) {
199+
if (key in target && !(key in Object.prototype)) {
200200
target[key] = val
201201
return val
202202
}

test/unit/features/global-api/set-delete.spec.js

+26
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,32 @@ describe('Global API: set/delete', () => {
8080
expect(vm.$el.innerHTML).toBe('<p>D</p><p>B</p><p>C</p>')
8181
}).then(done)
8282
})
83+
84+
// #6845
85+
it('should not overwrite properties on prototype chain', () => {
86+
class Model {
87+
constructor () {
88+
this._bar = null
89+
}
90+
get bar () {
91+
return this._bar
92+
}
93+
set bar (newvalue) {
94+
this._bar = newvalue
95+
}
96+
}
97+
98+
const vm = new Vue({
99+
data: {
100+
data: new Model()
101+
}
102+
})
103+
104+
Vue.set(vm.data, 'bar', 123)
105+
expect(vm.data.bar).toBe(123)
106+
expect(vm.data.hasOwnProperty('bar')).toBe(false)
107+
expect(vm.data._bar).toBe(123)
108+
})
83109
})
84110

85111
describe('Vue.delete', () => {

0 commit comments

Comments
 (0)