Skip to content

Commit 97086f3

Browse files
ant1m4tt3ryyx990803
authored andcommitted
fix(types): fix vm.$once argument type (#8995)
vm.$once should accept an event or array of events as first parameter. fix #8983
1 parent 7644380 commit 97086f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

types/vue.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export interface Vue {
5353
options?: WatchOptions
5454
): (() => void);
5555
$on(event: string | string[], callback: Function): this;
56-
$once(event: string, callback: Function): this;
56+
$once(event: string | string[], callback: Function): this;
5757
$off(event?: string | string[], callback?: Function): this;
5858
$emit(event: string, ...args: any[]): this;
5959
$nextTick(callback: (this: this) => void): void;

0 commit comments

Comments
 (0)