File tree 2 files changed +64
-8
lines changed
2 files changed +64
-8
lines changed Original file line number Diff line number Diff line change @@ -1166,6 +1166,62 @@ defineComponent({
1166
1166
}
1167
1167
} )
1168
1168
1169
- // #12742 allow attaching custom properties (consistent with v3)
1170
- const Foo = defineComponent ( { } )
1171
- Foo . foobar = 123
1169
+ describe ( 'constructor attach custom properties' , ( ) => {
1170
+ // #12742 allow attaching custom properties (consistent with v3)
1171
+ const Foo = defineComponent ( { } )
1172
+ Foo . foobar = 123
1173
+ } )
1174
+
1175
+ describe ( 'constructor instance type' , ( ) => {
1176
+ const Comp = defineComponent ( {
1177
+ data ( ) {
1178
+ return {
1179
+ a : 1
1180
+ }
1181
+ } ,
1182
+
1183
+ computed : {
1184
+ ac ( ) {
1185
+ return 1
1186
+ }
1187
+ } ,
1188
+
1189
+ methods : {
1190
+ callA ( b : number ) {
1191
+ return b
1192
+ }
1193
+ } ,
1194
+
1195
+ setup ( ) {
1196
+ return {
1197
+ sa : '1'
1198
+ }
1199
+ }
1200
+ } )
1201
+
1202
+ const comp = new Comp ( )
1203
+
1204
+ expectType < number > ( comp . a )
1205
+ expectType < number > ( comp . ac )
1206
+ expectType < string > ( comp . sa )
1207
+ expectType < ( b : number ) => number > ( comp . callA )
1208
+ } )
1209
+
1210
+ describe ( 'should report non-existent properties in instance' , ( ) => {
1211
+ const Foo = defineComponent ( { } )
1212
+ const instance = new Foo ( )
1213
+ // @ts -expect-error
1214
+ instance . foo
1215
+
1216
+ const Foo2 = defineComponent ( {
1217
+ data ( ) {
1218
+ return { }
1219
+ } ,
1220
+ methods : {
1221
+ example ( ) { }
1222
+ }
1223
+ } )
1224
+ const instance2 = new Foo2 ( )
1225
+ // @ts -expect-error
1226
+ instance2 . foo
1227
+ } )
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ export type DefineComponent<
72
72
*/
73
73
export function defineComponent <
74
74
RawBindings ,
75
- D = Data ,
75
+ D = { } ,
76
76
C extends ComputedOptions = { } ,
77
77
M extends MethodOptions = { } ,
78
78
Mixin extends ComponentOptionsMixin = ComponentOptionsMixin ,
@@ -101,8 +101,8 @@ export function defineComponent<
101
101
*/
102
102
export function defineComponent <
103
103
PropNames extends string ,
104
- RawBindings = Data ,
105
- D = Data ,
104
+ RawBindings = { } ,
105
+ D = { } ,
106
106
C extends ComputedOptions = { } ,
107
107
M extends MethodOptions = { } ,
108
108
Mixin extends ComponentOptionsMixin = ComponentOptionsMixin ,
@@ -140,8 +140,8 @@ export function defineComponent<
140
140
*/
141
141
export function defineComponent <
142
142
Props ,
143
- RawBindings = Data ,
144
- D = Data ,
143
+ RawBindings = { } ,
144
+ D = { } ,
145
145
C extends ComputedOptions = { } ,
146
146
M extends MethodOptions = { } ,
147
147
Mixin extends ComponentOptionsMixin = ComponentOptionsMixin ,
You can’t perform that action at this time.
0 commit comments