Skip to content

Commit 3ee62fd

Browse files
Elevistayyx990803
authored andcommitted
fix(inject): exclude not enumerable keys of inject object (#6346)
close #6574
1 parent 1f52a2a commit 3ee62fd

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

src/core/instance/inject.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@ export function resolveInject (inject: any, vm: Component): ?Object {
4141
// inject is :any because flow is not smart enough to figure out cached
4242
const result = Object.create(null)
4343
const keys = hasSymbol
44-
? Reflect.ownKeys(inject)
44+
? Reflect.ownKeys(inject).filter(key => {
45+
return Object.getOwnPropertyDescriptor(inject, key).enumerable
46+
})
4547
: Object.keys(inject)
4648

4749
for (let i = 0; i < keys.length; i++) {

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

+9-1
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,15 @@ describe('Options provide/inject', () => {
362362
expect(`Injection "baz" not found`).not.toHaveBeenWarned()
363363
})
364364

365-
// GitHub issue #6008
365+
it('should not warn when injection key which is not provided is not enumerable', () => {
366+
const parent = new Vue({ provide: { foo: 1 }})
367+
const inject = { foo: 'foo' }
368+
Object.defineProperty(inject, '__ob__', { enumerable: false, value: '__ob__' })
369+
new Vue({ parent, inject })
370+
expect(`Injection "__ob__" not found`).not.toHaveBeenWarned()
371+
})
372+
373+
// Github issue #6008
366374
it('should merge provide from mixins (objects)', () => {
367375
const mixinA = { provide: { foo: 'foo' }}
368376
const mixinB = { provide: { bar: 'bar' }}

0 commit comments

Comments
 (0)