Skip to content

Commit 005e52d

Browse files
committed
fix(types): support Vue interface augmentations in defineComponent
fix #12642
1 parent 08fb4a2 commit 005e52d

4 files changed

+41
-25
lines changed

types/test/augmentation-test.ts

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Vue from '../index'
1+
import Vue, { defineComponent } from '../index'
22

33
declare module '../vue' {
44
// add instance property and method
@@ -44,3 +44,10 @@ vm.$instanceMethod()
4444

4545
Vue.staticProperty
4646
Vue.staticMethod()
47+
48+
defineComponent({
49+
mounted() {
50+
this.$instanceMethod
51+
this.$instanceProperty
52+
}
53+
})

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

+1
Original file line numberDiff line numberDiff line change
@@ -1143,6 +1143,7 @@ defineComponent({
11431143
// https://github.com/vuejs/vue/issues/12628#issuecomment-1177258223
11441144
defineComponent({
11451145
render(h) {
1146+
// vue 2
11461147
this.$listeners
11471148
this.$on('foo', () => {})
11481149
this.$ssrContext

types/v3-component-public-instance.d.ts

+15-15
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,15 @@ import {
55
} from './v3-generated'
66
import { UnionToIntersection } from './common'
77

8-
import { Vue, Vue2Instance, VueConstructor } from './vue'
8+
import { Vue, VueConstructor } from './vue'
99
import {
1010
ComputedOptions,
1111
MethodOptions,
1212
ExtractComputedReturns,
1313
ComponentOptionsMixin,
1414
ComponentOptionsBase
1515
} from './v3-component-options'
16-
import { EmitFn, EmitsOptions, Slots } from './v3-setup-context'
17-
import { VNode } from './vnode'
16+
import { EmitFn, EmitsOptions } from './v3-setup-context'
1817

1918
/**
2019
* Custom properties added to component instances in any way and can be accessed through `this`
@@ -173,18 +172,19 @@ interface Vue3Instance<
173172
Defaults,
174173
MakeDefaultsOptional,
175174
Options
176-
> extends Vue2Instance {
177-
$data: D
178-
readonly $props: Readonly<
179-
MakeDefaultsOptional extends true
180-
? Partial<Defaults> & Omit<P & PublicProps, keyof Defaults>
181-
: P & PublicProps
182-
>
183-
readonly $root: ComponentPublicInstance | null
184-
readonly $parent: ComponentPublicInstance | null
185-
readonly $emit: EmitFn<E>
186-
readonly $options: Options & MergedComponentOptionsOverride
187-
}
175+
> extends Vue<
176+
D,
177+
Readonly<
178+
MakeDefaultsOptional extends true
179+
? Partial<Defaults> & Omit<P & PublicProps, keyof Defaults>
180+
: P & PublicProps
181+
>,
182+
ComponentPublicInstance | null,
183+
ComponentPublicInstance,
184+
ComponentPublicInstance[],
185+
Options & MergedComponentOptionsOverride,
186+
EmitFn<E>
187+
> {}
188188

189189
type MergedHook<T = () => void> = T | T[]
190190

types/vue.d.ts

+17-9
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,25 @@ export interface CreateElement {
3535
): VNode
3636
}
3737

38-
export interface Vue extends Vue2Instance {
39-
readonly $data: Record<string, any>
40-
readonly $props: Record<string, any>
41-
readonly $parent: Vue
42-
readonly $root: Vue
43-
readonly $children: Vue[]
38+
export interface Vue<
39+
Data = Record<string, any>,
40+
Props = Record<string, any>,
41+
Parent = never,
42+
Root = never,
43+
Children = never,
44+
Options = never,
45+
Emit = (event: string, ...args: any[]) => Vue
46+
> {
47+
// properties with different types in defineComponent()
48+
readonly $data: Data
49+
readonly $props: Props
50+
readonly $parent: Parent extends never ? Vue : Parent
51+
readonly $root: Root extends never ? Vue : Root
52+
readonly $children: Children extends never ? Vue[] : Children
4453
readonly $options: ComponentOptions<Vue>
45-
$emit(event: string, ...args: any[]): this
46-
}
54+
$emit: Emit
4755

48-
export interface Vue2Instance {
56+
// Vue 2 only or shared
4957
readonly $el: Element
5058
readonly $refs: {
5159
[key: string]: Vue | Element | (Vue | Element)[] | undefined

0 commit comments

Comments
 (0)