From afb8a6e546d8c367a82997dfb8a9fe13a1b1e30d Mon Sep 17 00:00:00 2001 From: neverland Date: Mon, 27 Apr 2020 16:36:30 +0800 Subject: [PATCH] types: VanComponent should extends Vue (#6148) --- types/component.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/component.d.ts b/types/component.d.ts index 05a459d0a..bec9d7e59 100644 --- a/types/component.d.ts +++ b/types/component.d.ts @@ -1,6 +1,6 @@ import Vue from 'vue'; -export class VanComponent { +export class VanComponent extends Vue { static name: string; static install(vue: typeof Vue): void;