vue3使用Electron打包成exe的方法与打包报错解决
// main.js
// Modules to control application life and create native browser window
const { app, BrowserWindow,Menu } = require('electron')
const createWindow = () => {
// Create the browser window.
const mainWindow = new BrowserWindow({
width: 800,
height: 600,
webPreferences: {
nodeIntegration: true, // 启用 Node.js 集成
contextIsolation: false, // 禁用上下文隔离(Node.js 集成的一个选项)
webSecurity: false, // 禁用同源策略
contextIsolation: false,
session: {
cookies: true // 这行确保启用了cookie
}
},
icon: 'build/.icon-ico/icon.ico'//这里是自动生成的图标,默认情况下不需要改
})
// and load the index.html of the app.
mainWindow.loadFile('http://www.jb51.net/javascript/dist/index.html')//如果要本地化,这样写,如果写远程的,那这里就是请求的域名
//隐藏顶部菜单
// mainWindow.setMenu(null);
// Open the DevTools.
// Open the DevTools.
//mainWindow.webContents.openDevTools()
mainWindow.maximize();//默认最大化
}
//设置中文菜单,默认是英文的
const createMenu = () => {
const template = [
{
label: '文件',
submenu: [
{
label: '退出',
accelerator: 'CmdOrCtrl+Q',
click: () => {
app.quit();
}
}
]
},
{
label: '查看',
submenu: [
{ label: '重新加载', accelerator: 'F5', role: 'reload' },
{ label: '全屏', accelerator: 'F11', role: 'togglefullscreen' },
{ label: '开发者工具', role: 'toggledevtools' }
]
}
];
const menu = Menu.buildFromTemplate(template);
Menu.setApplicationMenu(menu);
}
// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.whenReady().then(() => {
createWindow()
createMenu()//菜单设置
app.on('activate', () => {
// On macOS it's common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
if (BrowserWindow.getAllWindows().length === 0) createWindow()
})
})
// Quit when all windows are closed, except on macOS. There, it's common
// for applications and their menu bar to stay active until the user quits
// explicitly with Cmd + Q.
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') app.quit()
})
// In this file you can include the rest of your app's specific main process
// code. You can also put them in separate files and require them here.
- .NET Core系列之MemoryCache 初识
- 007手机一键Root(安机网一键Root) v3.0 官方最新版 一键ROOT您的Android手机
- 12306密码被盗了怎么办?12306密码外泄解决方法
- 12个字的qq网名
- 150M迷你型无线路由器怎么设置?
- 192.168.1.1打不开怎么办?路由器192.168.1.1打不开的原因以及解决办法
- 2011年电子报合订本 电子报 编辑部 中文 PDF版 [84M]
- 2015年1月15日小米新旗舰发布会现场图文直播
- 2016.3.1vivo Xplay5新品发布会现场视频直播 优酷直播
- 2016华为P9发布会视频直播地址 4月15日华为P9国行发布会直播
相关文章
- vue3使用Electron打包成exe的方法与打包报错解决
- vue3封装Element导航菜单的实例代码
- Vue3使用Element Plus实现列表界面的方法步骤
- Vue3中props和emit的使用方法详解
- vue3使用富文本编辑器Editor.js的简单方法
- vue3中addEventListener的用法详解
- vue3中路由传参query、params及动态路由传参详解
- vue3如何利用自定义指令实现下拉框分页懒加载
- vue3不能使用history.pushState修改url参数踩坑
- vue3+ElementPlus使用lang="ts"报Unexpected token错误的解决办法