diff --git a/types/component.d.ts b/types/component.d.ts index 52a9489a9..c7beddce1 100644 --- a/types/component.d.ts +++ b/types/component.d.ts @@ -1,4 +1,6 @@ +import Vue from 'vue' + export class VanComponent { static name: string; - install(): void; + static install(vue: typeof Vue): void; }