1 2 3 4
import type { App } from 'vue'; declare global { declare interface Window {
5
// Global vue app instance
6
__APP__: App<Element>;
7
__VERSION__: string;
8 9
} }