Skip to content

Commit 8d66691

Browse files
committed
fix(core): should preserve reactivity-ness of injected objects
fix #5913
1 parent 5dbca4e commit 8d66691

File tree

2 files changed

+47
-2
lines changed

2 files changed

+47
-2
lines changed

src/core/instance/inject.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import { warn } from '../util/index'
44
import { hasOwn } from 'shared/util'
55
import { hasSymbol } from 'core/util/env'
6-
import { defineReactive } from '../observer/index'
6+
import { defineReactive, observerState } from '../observer/index'
77

88
export function initProvide (vm: Component) {
99
const provide = vm.$options.provide
@@ -17,6 +17,7 @@ export function initProvide (vm: Component) {
1717
export function initInjections (vm: Component) {
1818
const result = resolveInject(vm.$options.inject, vm)
1919
if (result) {
20+
observerState.shouldConvert = false
2021
Object.keys(result).forEach(key => {
2122
/* istanbul ignore else */
2223
if (process.env.NODE_ENV !== 'production') {
@@ -32,6 +33,7 @@ export function initInjections (vm: Component) {
3233
defineReactive(vm, key, result[key])
3334
}
3435
})
36+
observerState.shouldConvert = true
3537
}
3638
}
3739

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

+44-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import Vue from 'vue'
2-
import { isNative } from 'core/util/env'
2+
import { Observer } from 'core/observer/index'
3+
import { isNative, isObject, hasOwn } from 'core/util/index'
34

45
describe('Options provide/inject', () => {
56
let injected
@@ -399,4 +400,46 @@ describe('Options provide/inject', () => {
399400

400401
expect(injected).toEqual(['foo', 'bar'])
401402
})
403+
404+
// #5913
405+
it('should keep the reactive with provide', () => {
406+
function isObserver (obj) {
407+
if (isObject(obj)) {
408+
return hasOwn(obj, '__ob__') && obj.__ob__ instanceof Observer
409+
}
410+
return false
411+
}
412+
413+
const vm = new Vue({
414+
template: `<div><child ref='child'></child></div>`,
415+
data () {
416+
return {
417+
foo: {},
418+
$foo: {},
419+
foo1: []
420+
}
421+
},
422+
provide () {
423+
return {
424+
foo: this.foo,
425+
$foo: this.$foo,
426+
foo1: this.foo1,
427+
bar: {},
428+
baz: []
429+
}
430+
},
431+
components: {
432+
child: {
433+
inject: ['foo', '$foo', 'foo1', 'bar', 'baz'],
434+
template: `<span/>`
435+
}
436+
}
437+
}).$mount()
438+
const child = vm.$refs.child
439+
expect(isObserver(child.foo)).toBe(true)
440+
expect(isObserver(child.$foo)).toBe(false)
441+
expect(isObserver(child.foo1)).toBe(true)
442+
expect(isObserver(child.bar)).toBe(false)
443+
expect(isObserver(child.baz)).toBe(false)
444+
})
402445
})

0 commit comments

Comments
 (0)