mirror of
https://gitcode.com/gh_mirrors/vue/vue-vben-admin
synced 2026-05-21 17:17:53 +00:00
10 lines
188 B
TypeScript
10 lines
188 B
TypeScript
import type { App } from 'vue';
|
|
|
|
declare global {
|
|
declare const __DYNAMIC_IMPORT__: boolean;
|
|
declare interface Window {
|
|
// Global vue app instance
|
|
__APP__: App<Element>;
|
|
}
|
|
}
|