-
Notifications
You must be signed in to change notification settings - Fork 612
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(chore): 修复 Vue.use(WujieVue) 时类型错误
- Loading branch information
marstonchen
committed
Feb 8, 2023
1 parent
478a90f
commit 4416bbd
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
import Vue from "vue"; | ||
import { VueConstructor } from "vue"; | ||
import { bus, preloadApp, destroyApp, setupApp } from "wujie"; | ||
|
||
declare const WujieVue: { | ||
bus: typeof bus; | ||
setupApp: typeof setupApp; | ||
preloadApp: typeof preloadApp; | ||
destroyApp: typeof destroyApp; | ||
install: (Vue: Vue) => void; | ||
install: (Vue: VueConstructor) => void; | ||
}; | ||
|
||
export default WujieVue; |