1 Star 0 Fork 0

hejin/electron-html-vue

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.js 569 Bytes
一键复制 编辑 原始数据 按行查看 历史
hejin 提交于 2023-12-07 16:21 . 初始化
const { app, BrowserWindow } = require('electron');
const path = require('node:path')
// 创建窗口
const createWindow = () => {
const win = new BrowserWindow({
width: 800,
height: 600,
frame: true, // 创建无边框窗口 false开启
})
win.loadFile('./src/index.html')
win.webContents.openDevTools()
}
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') app.quit()
})
app.whenReady().then(() => {
createWindow()
app.on('activate', () => {
if (BrowserWindow.getAllWindows().length === 0) createWindow()
})
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ancient-road-edge/electron-html-vue.git
git@gitee.com:ancient-road-edge/electron-html-vue.git
ancient-road-edge
electron-html-vue
electron-html-vue
master

搜索帮助