Shell

最后更新于:2022-04-02 03:34:23

[TOC] [https://electronjs.org/docs/api/shell](https://electronjs.org/docs/api/shell) 使用默认应用程序管理文件和 url ## 案例 ### 用默认浏览器打开url ``` const { shell } = require('electron') shell.openExternal('https://github.com') ```
';