tray 系统托盘
最后更新于:2022-04-02 03:34:29
[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)
}
```
';