mirror of
https://github.com/LLOneBot/LLOneBot.git
synced 2024-11-22 01:56:33 +00:00
20 lines
251 B
JavaScript
20 lines
251 B
JavaScript
// 运行在 Electron 渲染进程 下的页面脚本
|
|
|
|
|
|
// 页面加载完成时触发
|
|
function onLoad() {
|
|
|
|
}
|
|
|
|
|
|
// 打开设置界面时触发
|
|
function onConfigView(view) {
|
|
|
|
}
|
|
|
|
|
|
// 这两个函数都是可选的
|
|
export {
|
|
onLoad,
|
|
onConfigView
|
|
} |