const { app, BrowserWindow } = require('electron');
const path = require('path');
const url = require('url');
function createWindow() {
// 创建一个新的BrowserWindow实例
const win = new BrowserWindow({
width: 800,
height: 600,
webPreferences: {
nodeIntegration: true // 允许在页面中使用Node.js
}
});
// 加载Vue打包后的第一个页面
win.loadURL(url.format({
pathname: path.join(__dirname, 'dist/index.html'),
protocol: 'file:',
slashes: true
}));
// 监听窗口关闭事件,确保在Windows上正确关闭
win.on('closed', () => {
win = null;
});
}
// Electron 初始化后调用
app.on('ready', createWindow);
// 所有窗口关闭时退出应用
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit();
}
});
app.on('activate', () => {
// 在macOS上,点击Dock图标后自动创建一个窗口
if (win === null) {
createWindow();
}
});
electron创建窗口实例
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。