Skip to main content
Version: 3.1

Attribute 组件属性

结构声明

interface Attribute {
"concept": "Attribute", // 产品概念
"name": string, // 组件属性名称
"group": string, // 组件属性分组
"title": string, // 组件属性标题
"description": string, // 组件属性描述
"typeAnnotation": TypeAnnotation, // 类型
"required": boolean, // 是否必填
"defaultValue": string, // 默认值
"sync": boolean, // 是否支持双向绑定
"advanced": boolean, // 是否为高级功能,不在低代码中显示
"options": Array<{ value: string, title: string}>, // options
}

示例

简单示例

{
"concept": "Attribute",
"name": "data-source",
"group": "数据属性",
"title": "数据源",
"description": "",
"typeAnnotation": null,
"required": true,
"defaultValue": null,
"sync": true,
"advanced": null,
"options": null
}