Files
dooring/packages/dooringx-doc/src/docs/3.2.md
hufeixiong 7f7a839aef add doc
2021-07-10 23:19:56 +08:00

29 lines
586 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: 左侧面板
sTitle: dooringx-lib插件开发
order: 10
---
左侧面板传入leftRenderListCategory即可。
```js
leftRenderListCategory: [
{
type: 'basic',
icon: <HighlightOutlined />,
displayName: '基础组件',
},
{
type: 'xxc',
icon: <ContainerOutlined />,
custom: true,
customRender: <div>我是自定义渲染</div>,
},
],
```
type是分类左侧组件显示在哪个分类由该字段决定。
icon则是左侧分类小图标。
当custom为true时可以使用customRender自定义渲染。