first commit

This commit is contained in:
编码猿
2024-09-27 01:23:51 +08:00
commit 72ab70b6fd
212 changed files with 30296 additions and 0 deletions

13
dist/application/assets/js/Home.js vendored Normal file
View File

@@ -0,0 +1,13 @@
const { ipcRenderer } = require('electron');
class Home {
constructor() {
console.log(process.argv)
$(".home").click(()=> {
// 渲染进程发起ipc让主进程创建窗体
ipcRenderer.sendSync('openWindow', ['PlayVideo.controller', true])
})
}
}
new Home();