File tree 2 files changed +18
-1
lines changed
test/unit/features/options
2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -161,7 +161,7 @@ function initData (vm: Component) {
161
161
162
162
function getData ( data : Function , vm : Component ) : any {
163
163
try {
164
- return data . call ( vm )
164
+ return data . call ( vm , vm )
165
165
} catch ( e ) {
166
166
handleError ( e , vm , `data()` )
167
167
return { }
Original file line number Diff line number Diff line change @@ -106,4 +106,21 @@ describe('Options data', () => {
106
106
} )
107
107
expect ( vm . a ) . toBe ( 1 )
108
108
} )
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
+ } )
109
126
} )
You can’t perform that action at this time.
0 commit comments