Skip to content

Commit 26ff4bc

Browse files
committed
fix(types): global component registration type compat w/ defineComponent
fix #12622
1 parent b70a258 commit 26ff4bc

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

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

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import Vue, { VueConstructor } from '../../index'
12
import {
23
Component,
34
defineComponent,
@@ -8,12 +9,12 @@ import {
89
} from '../../index'
910
import { describe, test, expectType, expectError, IsUnion } from '../utils'
1011

11-
defineComponent({
12-
props: {
13-
foo: Number
14-
},
15-
render() {
16-
this.foo
12+
describe('compat with v2 APIs', () => {
13+
const comp = defineComponent({})
14+
15+
Vue.component('foo', comp)
16+
function install(app: VueConstructor) {
17+
app.component('foo', comp)
1718
}
1819
})
1920

types/vue.d.ts

+5
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import {
1414
} from './options'
1515
import { VNode, VNodeData, VNodeChildren, NormalizedScopedSlot } from './vnode'
1616
import { PluginFunction, PluginObject } from './plugin'
17+
import { DefineComponent } from './v3-define-component'
1718

1819
export interface CreateElement {
1920
(
@@ -313,6 +314,10 @@ export interface VueConstructor<V extends Vue = Vue> {
313314
id: string,
314315
definition?: ComponentOptions<V>
315316
): ExtendedVue<V, {}, {}, {}, {}, {}>
317+
component<T extends DefineComponent<any, any, any, any, any, any, any, any>>(
318+
id: string,
319+
definition?: T
320+
): T
316321

317322
use<T>(
318323
plugin: PluginObject<T> | PluginFunction<T>,

0 commit comments

Comments
 (0)