You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
337 B
JavaScript

2 days ago
const { app, BrowserWindow } = require('electron');
function createWindow() {
const win = new BrowserWindow({
width: 1000,
height: 700,
webPreferences: {
nodeIntegration: true
}
});
win.loadFile('dist/index.html'); // Vue 打包后的文件
}
app.whenReady().then(createWindow);