Skip to main content
Version: 3.2

BindDirective 元素指令

下个版本迁移为 BindDirective。

结构声明

interface BindDirective {
"concept": "BindDirective", // 产品概念
"name": string, // 元素指令名称
"rawName": string, // 原始名称
"type": "string" | "static" | "dynamic", // type
"value": string, // 指令值,type 为 "string" | "static" 的时候才生效
"expression": LogicItem, // 属性表达式,type 为 "dynamic" 的时候生效
"arg": string, // 指令参数
"modifiers": string, // 指令修饰器
"playground": Array<LogicItem>, // 草稿态
}

示例

简单示例

{
"concept": "BindDirective",
"name": "text",
"rawName": "tooltip",
"type": "dynamic",
"value": "text",
"expression": null,
"arg": null,
"modifiers": null,
"playground": []
}