diff --git a/types/vue.d.ts b/types/vue.d.ts index 179fb5fe38e..07a34fc9faa 100644 --- a/types/vue.d.ts +++ b/types/vue.d.ts @@ -53,7 +53,7 @@ export interface Vue { options?: WatchOptions ): (() => void); $on(event: string | string[], callback: Function): this; - $once(event: string, callback: Function): this; + $once(event: string | string[], callback: Function): this; $off(event?: string | string[], callback?: Function): this; $emit(event: string, ...args: any[]): this; $nextTick(callback: (this: this) => void): void;