From f293697e9174cee5485c09871fb9cdbbf2e89686 Mon Sep 17 00:00:00 2001 From: Marston Chen <65653843+Marstonchan@users.noreply.github.com> Date: Wed, 8 Feb 2023 17:14:55 +0800 Subject: [PATCH] =?UTF-8?q?fix(chore):=20=E4=BF=AE=E5=A4=8D=20Vue.use(Wuji?= =?UTF-8?q?eVue)=20=E6=97=B6=E7=B1=BB=E5=9E=8B=E9=94=99=E8=AF=AF=20(#382)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: marstonchen --- packages/wujie-vue2/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/wujie-vue2/index.d.ts b/packages/wujie-vue2/index.d.ts index 543d2cb0..f4bff090 100644 --- a/packages/wujie-vue2/index.d.ts +++ b/packages/wujie-vue2/index.d.ts @@ -1,4 +1,4 @@ -import Vue from "vue"; +import { VueConstructor } from "vue"; import { bus, preloadApp, destroyApp, setupApp } from "wujie"; declare const WujieVue: { @@ -6,7 +6,7 @@ declare const WujieVue: { setupApp: typeof setupApp; preloadApp: typeof preloadApp; destroyApp: typeof destroyApp; - install: (Vue: Vue) => void; + install: (Vue: VueConstructor) => void; }; export default WujieVue;