Skip to content

Commit 3c21675

Browse files
jkzingyyx990803
authored andcommitted
fix(provide): provide should default to parentVal during merging (#6473)
fix #6436
1 parent a67b795 commit 3c21675

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

src/core/util/options.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export function mergeDataOrFn (
9696
: childVal
9797
const defaultData = typeof parentVal === 'function'
9898
? parentVal.call(vm)
99-
: undefined
99+
: parentVal
100100
if (instanceData) {
101101
return mergeData(instanceData, defaultData)
102102
} else {

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

+20
Original file line numberDiff line numberDiff line change
@@ -545,4 +545,24 @@ describe('Options provide/inject', () => {
545545

546546
expect(vm.$el.textContent).toBe(`foo: foo injected, bar: bar injected`)
547547
})
548+
549+
it('merge provide with object syntax when using Vue.extend', () => {
550+
const child = {
551+
inject: ['foo'],
552+
template: `<span/>`,
553+
created () {
554+
injected = this.foo
555+
}
556+
}
557+
const Ctor = Vue.extend({
558+
provide: { foo: 'foo' },
559+
render (h) {
560+
return h(child)
561+
}
562+
})
563+
564+
new Ctor().$mount()
565+
566+
expect(injected).toEqual('foo')
567+
})
548568
})

0 commit comments

Comments
 (0)