mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-20 15:38:32 +00:00
feat: 新增插件的静态函数onInit,每次插件安装的时候会执行
This commit is contained in:
parent
f4e9b3a339
commit
fb943c530e
@ -109,6 +109,10 @@ export default class Panel implements IWidget {
|
|||||||
if (props.onInit) {
|
if (props.onInit) {
|
||||||
props.onInit.call(this, this);
|
props.onInit.call(this, this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (content.onInit) {
|
||||||
|
content.onInit.call(this, this);
|
||||||
|
}
|
||||||
// todo: process shortcut
|
// todo: process shortcut
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user