Skip to main content
Version: 3.5

Attribute 组件属性

1. 结构声明

class Attribute extends BaseNode {
name: string = '';
group: string;
title: string;
description: string;
typeAnnotation: TypeAnnotation;
required: boolean;
defaultValue: DefaultValue;
sync: boolean;
advanced: boolean;
options: Array<{
value: string;
title: string;
}>;
}