/* eslint-disable */ declare module '*.vue' { import type {DefineComponent} from 'vue' const component: DefineComponent<{}, {}, any> export default component } /* 定义全局变量 */ declare global { /* 应用版本号 */ const APP_VERSION: string; /* 应用启动端口号 */ const APP_PORT: number; /* 应用基础路径 */ const APP_BASE: string; /* 同 APP_BASE */ const BASE_URL: string; }