test
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

renderer.js 379B

12345678910
  1. // This file is required by the index.html file and will
  2. // be executed in the renderer process for that window.
  3. // No Node.js APIs are available in this process because
  4. // `nodeIntegration` is turned off. Use `preload.js` to
  5. // selectively enable features needed in the rendering
  6. // process.
  7. let myNotification = new Notification('标题', {
  8. body: '通知正文内容'
  9. });