[bugfix] fix error when use Vue.use in typescript (#1410)

[ bug fix ] fix error when use Vue.use in typescript
This commit is contained in:
Silence Tang 2018-07-05 15:21:07 +08:00 committed by neverland
parent 5be214263c
commit 3b8e446b50

View File

@ -1,4 +1,6 @@
import Vue from 'vue'
export class VanComponent {
static name: string;
install(): void;
static install(vue: typeof Vue): void;
}