Skip to content

Commit 3a5432a

Browse files
Kingwlyyx990803
authored andcommitted
feat(core): call data method with this value (#6760)
#6739
1 parent 596257c commit 3a5432a

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

src/core/instance/state.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ function initData (vm: Component) {
161161

162162
function getData (data: Function, vm: Component): any {
163163
try {
164-
return data.call(vm)
164+
return data.call(vm, vm)
165165
} catch (e) {
166166
handleError(e, vm, `data()`)
167167
return {}

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

+17
Original file line numberDiff line numberDiff line change
@@ -106,4 +106,21 @@ describe('Options data', () => {
106106
})
107107
expect(vm.a).toBe(1)
108108
})
109+
110+
it('should called with this', () => {
111+
const vm = new Vue({
112+
template: '<div><child></child></div>',
113+
provide: { foo: 1 },
114+
components: {
115+
child: {
116+
template: '<span>{{bar}}</span>',
117+
inject: ['foo'],
118+
data ({ foo }) {
119+
return { bar: 'foo:' + foo }
120+
}
121+
}
122+
}
123+
}).$mount()
124+
expect(vm.$el.innerHTML).toBe('<span>foo:1</span>')
125+
})
109126
})

0 commit comments

Comments
 (0)