Skip to content

Commit e06d2af

Browse files
HerringtonDarkholmeyyx990803
authored andcommitted
fix(types): avoid this in VueConstructor signature (#9173)
vuejs/vue-class-component#294 (comment)
1 parent 628c1b7 commit e06d2af

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

types/test/tsconfig.json

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"compilerOptions": {
33
"target": "es5",
4+
"experimentalDecorators": true,
45
"lib": [
56
"dom",
67
"es2015"

types/test/vue-test.ts

+9-2
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,10 @@ class Test extends Vue {
102102
this.compile("<div>{{ message }}</div>");
103103
this
104104
.use(() => {
105-
105+
106106
})
107107
.use(() => {
108-
108+
109109
})
110110
.mixin({})
111111
.mixin({});
@@ -193,3 +193,10 @@ Vue.extend({
193193
return h('canvas', {}, [a])
194194
}
195195
})
196+
197+
declare function decorate<VC extends typeof Vue>(v: VC): VC;
198+
199+
@decorate
200+
class Decorated extends Vue {
201+
a = 123;
202+
}

types/vue.d.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,9 @@ export interface VueConstructor<V extends Vue = Vue> {
111111
component<Props>(id: string, definition: FunctionalComponentOptions<Props, RecordPropsDefinition<Props>>): ExtendedVue<V, {}, {}, {}, Props>;
112112
component(id: string, definition?: ComponentOptions<V>): ExtendedVue<V, {}, {}, {}, {}>;
113113

114-
use<T>(plugin: PluginObject<T> | PluginFunction<T>, options?: T): this;
115-
use(plugin: PluginObject<any> | PluginFunction<any>, ...options: any[]): this;
116-
mixin(mixin: VueConstructor | ComponentOptions<Vue>): this;
114+
use<T>(plugin: PluginObject<T> | PluginFunction<T>, options?: T): VueConstructor<V>;
115+
use(plugin: PluginObject<any> | PluginFunction<any>, ...options: any[]): VueConstructor<V>;
116+
mixin(mixin: VueConstructor | ComponentOptions<Vue>): VueConstructor<V>;
117117
compile(template: string): {
118118
render(createElement: typeof Vue.prototype.$createElement): VNode;
119119
staticRenderFns: (() => VNode)[];

0 commit comments

Comments
 (0)