This repository has been archived on 2025-01-09. You can view files and clone it, but cannot push or open issues or pull requests.

20 lines
469 B
JavaScript
Raw Normal View History

2025-01-09 18:30:49 +08:00
const { ipcRenderer } = require('electron')
window.onload = () => {
let oInput = document.getElementById('txt')
let val = localStorage.getItem('name')
oInput.value = val
// 在 sub 中发送数据给 index.js
let oBtn = document.getElementById('btn')
oBtn.addEventListener('click', () => {
ipcRenderer.send('stm', '来自于sub进程')
})
// 接收数据
ipcRenderer.on('its', (_, data) => {
alert(data)
})
}