mirror of
https://github.com/electron-vite/electron-vite-vue
synced 2025-04-10 14:10:14 +08:00
6 lines
121 B
JavaScript
6 lines
121 B
JavaScript
const { ipcRenderer } = require('electron')
|
|
|
|
window.stopLoading = function() {
|
|
ipcRenderer.send('stop-loading-main')
|
|
}
|