feat: 新增插件的静态函数onInit,每次插件安装的时候会执行

This commit is contained in:
zude.hzd 2020-11-19 23:03:51 +08:00
parent f4e9b3a339
commit fb943c530e

View File

@ -109,6 +109,10 @@ export default class Panel implements IWidget {
if (props.onInit) {
props.onInit.call(this, this);
}
if (content.onInit) {
content.onInit.call(this, this);
}
// todo: process shortcut
}