常见问题FAQ
- 免费下载或者VIP会员专享资源能否直接商用?
- 本站所有资源版权均属于原作者所有,这里所提供资源均只能用于参考学习用,请勿直接商用。若由于商用引起版权纠纷,一切责任均由使用者承担。更多说明请参考 VIP介绍。
- 提示下载完但解压或打开不了?
- 找不到素材资源介绍文章里的示例图片?
- 模板不会安装或需要功能定制以及二次开发?
const win = new BrowserWindow({
// width: screen.getPrimaryDisplay().workAreaSize.width,
// height: screen.getPrimaryDisplay().workAreaSize.height,
width:600,
height:400,
frame: false,
transparent: true,
// resizable: false, // 是否允许拉伸大小
alwaysOnTop:true,
fullscreen: true,
x:0,
y:0,
// backgroundColor: '#ffffff',
webPreferences: {
devTools: false,
// contextIsolation:false,
// Use pluginOptions.nodeIntegration, leave this alone
// See nklayman.github.io/vue-cli-plugin-electron-builder/guide/security.html#node-integration for more info
nodeIntegration: process.env.ELECTRON_NODE_INTEGRATION
}
})
发表评论
还没有评论,快来抢沙发吧!