file-receive-client-web/global.d.ts

8 lines
183 B
TypeScript
Raw Permalink Normal View History

2023-12-12 17:14:30 +08:00
import Vue from 'vue';
declare global {
interface Window {
Vue: typeof Vue;
ElementPlus: any; // 如果 Element Plus 没有提供类型声明文件,可以使用 any
}
}