6 lines
195 B
Vue
6 lines
195 B
Vue
![]() |
import {contextBridge, ipcRenderer} from 'electron'
|
||
|
|
||
|
contextBridge.exposeInMainWorld('_ELECTRON_PRELOAD_UTILS_', {
|
||
|
openInBrowser: (url: string) => ipcRenderer.send('open-in-browser', url),
|
||
|
});
|