Skip to content

Commit 1933ee8

Browse files
privatenumberyyx990803
authored andcommitted
fix(provide/inject): Merges symbol provides (#7926)
1 parent 5ab028a commit 1933ee8

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

src/core/util/options.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import config from '../config'
44
import { warn } from './debug'
55
import { nativeWatch } from './env'
66
import { set } from '../observer/index'
7+
import { hasSymbol } from '../util/index'
78

89
import {
910
ASSET_TYPES,
@@ -48,9 +49,15 @@ if (process.env.NODE_ENV !== 'production') {
4849
function mergeData (to: Object, from: ?Object): Object {
4950
if (!from) return to
5051
let key, toVal, fromVal
51-
const keys = Object.keys(from)
52+
53+
const keys = hasSymbol
54+
? Reflect.ownKeys(from)
55+
: Object.keys(from)
56+
5257
for (let i = 0; i < keys.length; i++) {
5358
key = keys[i]
59+
// in case the object is already observed...
60+
if (key === '__ob__') continue
5461
toVal = to[key]
5562
fromVal = from[key]
5663
if (!hasOwn(to, key)) {

test/unit/features/options/inject.spec.js

+26
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,32 @@ describe('Options provide/inject', () => {
188188
}).$mount()
189189
expect(vm.$el.textContent).toBe('123')
190190
})
191+
192+
it('should merge symbol provide from mixins (functions)', () => {
193+
const keyA = Symbol('foo')
194+
const keyB = Symbol('bar')
195+
196+
const mixinA = { provide: () => ({ [keyA]: 'foo' }) }
197+
const mixinB = { provide: () => ({ [keyB]: 'bar' }) }
198+
const child = {
199+
inject: {
200+
foo: keyA,
201+
bar: keyB
202+
},
203+
template: `<span/>`,
204+
created () {
205+
injected = [this.foo, this.bar]
206+
}
207+
}
208+
new Vue({
209+
mixins: [mixinA, mixinB],
210+
render (h) {
211+
return h(child)
212+
}
213+
}).$mount()
214+
215+
expect(injected).toEqual(['foo', 'bar'])
216+
})
191217
}
192218

193219
// GitHub issue #5223

0 commit comments

Comments
 (0)