lowcode-engine-ext-en
v1.1.0
Published
### Introduction Lowcode engine ext en is a collection of plugins that setters and setters must rely on, provided by the official low code engine A setter is used to display the properties of each material
Downloads
16
Readme
lowcode-engine-ext-en
Introduction
Lowcode engine ext en is a collection of plugins that setters and setters must rely on, provided by the official low code engine A setter is used to display the properties of each material
Usage
Referencing using CDN
https://unpkg.com/[email protected]/dist/js/engine-ext.js
https://unpkg.com/[email protected]/dist/css/engine-ext.css;
Expand Variable Binding Panel
Expand the property binding panel by passing in extraDataMap
ctx.skeleton.add({
area: 'centerArea',
type: 'Widget',
content: pluginMap.VariableBindDialog,
name: 'variableBindDialog',
props: {
getSchema: () => editorController.getSchema(),
// Expand variable binding
extraDataMap: {
props: {
name: 'Props', // Variable group display name
key: 'props', // Attribute name, such as this.props
getChildren: () => [
{
label: 'prop1',
value: 'value1',
},
{
label: 'prop2',
children: [
{ label: 'propxxx', value: 1 }
]
}
],
}
}
},
});