fix(echart): legend not work

This commit is contained in:
Vben
2021-03-27 00:04:36 +08:00
parent a98835e18b
commit b25ceb4201
7 changed files with 37 additions and 44 deletions

9
types/global.d.ts vendored
View File

@@ -1,15 +1,14 @@
import type {
App,
ComponentRenderProxy,
VNode,
ComponentPublicInstance,
FunctionalComponent,
} from 'vue';
declare global {
declare interface Window {
// Global vue app instance
__APP__: App<Element>;
}
// declare interface Window {
// Global vue app instance
// __APP__: App<Element>;
// }
export type Writable<T> = {
-readonly [P in keyof T]: T[P];