mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-16 15:01:15 +00:00
578 B
578 B
title, sidebar_position, tags
| title | sidebar_position | tags | |
|---|---|---|---|
| 插件面板如何调整位置 | 10 |
|
使用 index 配置来定义位置,内置的默认都是 0
AliLowCodeEngine.skeleton.add({
area: 'leftArea',
type: 'PanelDock',
name: 'xxx',
content: () => 'xxx',
index: -1, // 使用 index 来定义位置,内置的默认都是 0
props: { icon: () => 'x' /* ReactElement 也可以 */ },
});
