mirror of
https://gitcode.com/gh_mirrors/vue/vue-vben-admin
synced 2026-05-17 20:07:47 +00:00
9 lines
143 B
TypeScript
9 lines
143 B
TypeScript
import type { App } from 'vue';
|
|
|
|
declare global {
|
|
declare interface Window {
|
|
// Global vue app instance
|
|
__APP__: App<Element>;
|
|
}
|
|
}
|