🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
[TOC] [https://electronjs.org/docs/api/tray](https://electronjs.org/docs/api/tray) ## 案例 ### 托盘气球通知 ``` function shownotifi(){ const options={ title:"托盘气球通知...", content:'this is a content', }; tray.displayBalloon(options) } ```