环境vue

在src下创建如下文件

index.d.ts 文件 ,举例是index 可以是别的名字

interface Window {
    electron: any; //是window.electron 的变量
}
1
2
3