Skip to content

Commit c711ec1

Browse files
lzxbyyx990803
authored andcommitted
fix(types): support chain call for Vue.use and Vue.mixin (#8595)
1 parent 613cb52 commit c711ec1

File tree

5 files changed

+24
-5
lines changed

5 files changed

+24
-5
lines changed

flow/global-api.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ declare interface GlobalAPI {
88
set: <T>(target: Object | Array<T>, key: string | number, value: T) => T;
99
delete: <T>(target: Object| Array<T>, key: string | number) => void;
1010
nextTick: (fn: Function, context?: Object) => void | Promise<*>;
11-
use: (plugin: Function | Object) => void;
12-
mixin: (mixin: Object) => void;
11+
use: (plugin: Function | Object) => GlobalAPI;
12+
mixin: (mixin: Object) => GlobalAPI;
1313
compile: (template: string) => { render: Function, staticRenderFns: Array<Function> };
1414

1515
directive: (id: string, def?: Function | Object) => Function | Object | void;

test/unit/features/global-api/mixin.spec.js

+5
Original file line numberDiff line numberDiff line change
@@ -162,4 +162,9 @@ describe('Global API: mixin', () => {
162162
expect(base).toHaveBeenCalled()
163163
expect(injected).toHaveBeenCalled()
164164
})
165+
166+
// #8595
167+
it('chain call', () => {
168+
expect(Vue.mixin({})).toBe(Vue)
169+
})
165170
})

test/unit/features/global-api/use.spec.js

+5
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,9 @@ describe('Global API: use', () => {
4949
expect(Vue.options.directives['plugin-test']).toBeUndefined()
5050
expect(Ctor2.options.directives['plugin-test']).toBe(def)
5151
})
52+
53+
// #8595
54+
it('chain call', () => {
55+
expect(Vue.use(() => {})).toBe(Vue)
56+
})
5257
})

types/test/vue-test.ts

+9
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,15 @@ class Test extends Vue {
9797
this.use;
9898
this.mixin(Test);
9999
this.compile("<div>{{ message }}</div>");
100+
this
101+
.use(() => {
102+
103+
})
104+
.use(() => {
105+
106+
})
107+
.mixin({})
108+
.mixin({});
100109
}
101110
}
102111

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): void;
115-
use(plugin: PluginObject<any> | PluginFunction<any>, ...options: any[]): void;
116-
mixin(mixin: VueConstructor | ComponentOptions<Vue>): void;
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;
117117
compile(template: string): {
118118
render(createElement: typeof Vue.prototype.$createElement): VNode;
119119
staticRenderFns: (() => VNode)[];

0 commit comments

Comments
 (0)