/// declare module '*.vue' { import type { DefineComponent } from 'vue' const component: DefineComponent<{}, {}, any> export default component } // Element Plus 中文语言包类型声明 declare module 'element-plus/dist/locale/zh-cn.mjs' { const zhCn: any export default zhCn } interface ImportMetaEnv { readonly VITE_API_BASE_URL: string } interface ImportMeta { readonly env: ImportMetaEnv }