@@ -3,6 +3,7 @@ import { VNode, VNodeData, VNodeDirective, NormalizedScopedSlot } from './vnode'
3
3
import { SetupContext } from './v3-setup-context'
4
4
import { DebuggerEvent } from './v3-generated'
5
5
import { DefineComponent } from './v3-define-component'
6
+ import { ComponentOptionsMixin } from './v3-component-options'
6
7
7
8
type Constructor = {
8
9
new ( ...args : any [ ] ) : any
@@ -93,7 +94,9 @@ export type ThisTypedComponentOptionsWithArrayProps<
93
94
Methods ,
94
95
Computed ,
95
96
PropNames extends string ,
96
- SetupBindings
97
+ SetupBindings ,
98
+ Mixin ,
99
+ Extends
97
100
> = object &
98
101
ComponentOptions <
99
102
V ,
@@ -102,7 +105,9 @@ export type ThisTypedComponentOptionsWithArrayProps<
102
105
Computed ,
103
106
PropNames [ ] ,
104
107
Record < PropNames , any > ,
105
- SetupBindings
108
+ SetupBindings ,
109
+ Mixin ,
110
+ Extends
106
111
> &
107
112
ThisType <
108
113
CombinedVueInstance <
@@ -111,7 +116,9 @@ export type ThisTypedComponentOptionsWithArrayProps<
111
116
Methods ,
112
117
Computed ,
113
118
Readonly < Record < PropNames , any > > ,
114
- SetupBindings
119
+ SetupBindings ,
120
+ Mixin ,
121
+ Extends
115
122
>
116
123
>
117
124
@@ -124,7 +131,9 @@ export type ThisTypedComponentOptionsWithRecordProps<
124
131
Methods ,
125
132
Computed ,
126
133
Props ,
127
- SetupBindings
134
+ SetupBindings ,
135
+ Mixin ,
136
+ Extends
128
137
> = object &
129
138
ComponentOptions <
130
139
V ,
@@ -133,7 +142,9 @@ export type ThisTypedComponentOptionsWithRecordProps<
133
142
Computed ,
134
143
RecordPropsDefinition < Props > ,
135
144
Props ,
136
- SetupBindings
145
+ SetupBindings ,
146
+ Mixin ,
147
+ Extends
137
148
> &
138
149
ThisType <
139
150
CombinedVueInstance <
@@ -142,7 +153,9 @@ export type ThisTypedComponentOptionsWithRecordProps<
142
153
Methods ,
143
154
Computed ,
144
155
Readonly < Props > ,
145
- SetupBindings
156
+ SetupBindings ,
157
+ Mixin ,
158
+ Extends
146
159
>
147
160
>
148
161
@@ -158,7 +171,9 @@ export interface ComponentOptions<
158
171
Computed = DefaultComputed ,
159
172
PropsDef = PropsDefinition < DefaultProps > ,
160
173
Props = DefaultProps ,
161
- RawBindings = { }
174
+ RawBindings = { } ,
175
+ Mixin extends ComponentOptionsMixin = ComponentOptionsMixin ,
176
+ Extends extends ComponentOptionsMixin = ComponentOptionsMixin
162
177
> {
163
178
data ?: Data
164
179
props ?: PropsDef
@@ -217,12 +232,12 @@ export interface ComponentOptions<
217
232
}
218
233
219
234
parent ?: Vue
220
- mixins ?: ( ComponentOptions < Vue > | typeof Vue ) [ ]
235
+ mixins ?: ( Mixin | ComponentOptions < Vue > | typeof Vue ) [ ]
221
236
name ?: string
222
237
// for SFC auto name inference w/ ts-loader check
223
238
__name ?: string
224
239
// TODO: support properly inferred 'extends'
225
- extends ?: ComponentOptions < Vue > | typeof Vue
240
+ extends ?: Extends | ComponentOptions < Vue > | typeof Vue
226
241
delimiters ?: [ string , string ]
227
242
comments ?: boolean
228
243
inheritAttrs ?: boolean
0 commit comments