当前仓库属于暂停状态,部分功能使用受限,详情请查阅 仓库状态说明
2 Star 8 Fork 2

Moxyu / MimPost
暂停

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
main.js 646 Bytes
一键复制 编辑 原始数据 按行查看 历史
Moxyu 提交于 2022-04-28 17:48 . 完善测试数据
const { app, BrowserWindow, Menu } = require('electron')
const createWindow = () => {
const win = new BrowserWindow({
width: 1280,
height: 960,
webPreferences: {
webSecurity: false,
allowRunningInsecureContent: true
}
})
win.loadFile('./dist/index.html')
// 打开开发工具
win.openDevTools()
Menu.setApplicationMenu(null)
}
app.whenReady().then(() => {
createWindow()
app.on('activate', () => {
if (BrowserWindow.getAllWindows().length === 0) {
createWindow()
}
})
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit()
}
})
})
JavaScript
1
https://gitee.com/Moxyu/mim-post.git
git@gitee.com:Moxyu/mim-post.git
Moxyu
mim-post
MimPost
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891