Skip to content

Commit 1d5a411

Browse files
committed
fix(types): fix type inference when using components option
1 parent dc8a68e commit 1d5a411

File tree

2 files changed

+26
-3
lines changed

2 files changed

+26
-3
lines changed

types/options.d.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export type Component<
2020
| typeof Vue
2121
| FunctionalComponentOptions<Props>
2222
| ComponentOptions<never, Data, Methods, Computed, Props, SetupBindings>
23-
| DefineComponent<any, any, any, any, any>
23+
| DefineComponent<any, any, any, any, any, any, any, any, any, any, any>
2424

2525
type EsModule<T> = T | { default: T }
2626

@@ -201,9 +201,9 @@ export interface ComponentOptions<
201201
directives?: { [key: string]: DirectiveFunction | DirectiveOptions }
202202
components?: {
203203
[key: string]:
204-
| Component<any, any, any, any>
204+
| {}
205+
| Component<any, any, any, any, any>
205206
| AsyncComponent<any, any, any, any>
206-
| DefineComponent<any, any, any, any, any, any, any, any, any, any>
207207
}
208208
transitions?: { [key: string]: object }
209209
filters?: { [key: string]: Function }

types/test/v3/define-component-test.tsx

+23
Original file line numberDiff line numberDiff line change
@@ -1115,3 +1115,26 @@ describe('functional w/ object props', () => {
11151115
// @ts-expect-error
11161116
;<Foo bar={123} />
11171117
})
1118+
1119+
// #12628
1120+
defineComponent({
1121+
components: {
1122+
App: defineComponent({})
1123+
},
1124+
data() {
1125+
return {}
1126+
},
1127+
provide(): any {
1128+
return {
1129+
fetchData: this.fetchData
1130+
}
1131+
},
1132+
created() {
1133+
this.fetchData()
1134+
},
1135+
methods: {
1136+
fetchData() {
1137+
throw new Error('Not implemented.')
1138+
}
1139+
}
1140+
})

0 commit comments

Comments
 (0)