{
  "version": 1.1,
  "tags": [
    {
      "name": "for",
      "description": "winged 逻辑节点For",
      "attributes": [
        {
          "name": "list",
          "description": "通过 list 属性绑定循环列表 (必须指定此属性)"
        },
        {
          "name": "item",
          "description": "通过 item 属性拿到每次循环的值 (必须指定此属性)"
        },
        {
          "name": "index",
          "description": "通过 index 属性拿到每次循环的索引(可选属性)"
        },
        {
          "name": "key",
          "description": "注意key这里为字符串(可选属性)"
        }
      ],
      "references": [
        {
          "name": "逻辑节点文档",
          "url": "https://nightingales.yuque.com/n_tech/winged/logical-node"
        }
      ]
    },
    {
      "name": "if",
      "description": "winged 逻辑节点 If ",
      "attributes": [
        {
          "name": "cond",
          "description": "通过cond计算结果决定是否渲染,cond内容需要符合DataPoint中的条件表达式规则 ."
        }
      ],
      "references": [
        {
          "name": "逻辑节点文档",
          "url": "https://nightingales.yuque.com/n_tech/winged/logical-node"
        }
      ]
    },
    {
      "name": "elif",
      "description": "winged 逻辑节点 Elif ",
      "attributes": [
        {
          "name": "cond",
          "description": "通过cond计算结果决定是否渲染,cond内容需要符合DataPoint中的条件表达式规则."
        }
      ],
      "references": [
        {
          "name": "逻辑节点文档",
          "url": "https://nightingales.yuque.com/n_tech/winged/logical-node"
        }
      ]
    },
    {
      "name": "else",
      "description": "winged 逻辑节点Else,渲染If,Elif均计算为false的内容",
      "attributes": [],
      "references": [
        {
          "name": "逻辑节点文档",
          "url": "https://nightingales.yuque.com/n_tech/winged/logical-node"
        }
      ]
    },
    {
      "name": "slot",
      "description": "winged 逻辑节点 Slot",
      "attributes": [
        {
          "name": "name",
          "description": "父组件可以利用 Plugin 的slot 属性 来匹配 Slot 的name字段 (必须指定此属性) "
        },
        {
          "name": "accept",
          "description": "申明可接受的 Plugin ,格式为 accept=[key]:[compName],[key]:[compName]..."
        },
        {
          "name": "scope",
          "description": "绑定当前 Slot 的作用域,使用者可以在 Plugin 的 slot-scope 中接收"
        }
      ],
      "references": [
        {
          "name": "逻辑节点文档",
          "url": "https://nightingales.yuque.com/n_tech/winged/logical-node"
        }
      ]
    },
    {
      "name": "plugin",
      "description": "winged 逻辑节点 Plugin",
      "attributes": [
        {
          "name": "slot",
          "description": "父组件可以利用 <Plugin/> 的slot 属性(必须指定此属性) 来匹配 <Slot/> 的name字段。"
        },
        {
          "name": "slot-scope",
          "description": "接收 <Slot /> 的 scope 字段"
        }
      ],
      "references": [
        {
          "name": "逻辑节点文档",
          "url": "https://nightingales.yuque.com/n_tech/winged/logical-node"
        }
      ]
    },
    {
      "name": "foreignView",
      "description": "winged 逻辑节点 ForeignView",
      "attributes": [
        {
          "name": "name",
          "description": "待渲染的外籍视图名称(必须指定此属性) 例如 VueDemo.vue ,对应的 name = VueDemo"
        },
        {
          "name": "props",
          "description": "传递给外籍视图的 props ,一般使用数据绑定点申明"
        }
      ],
      "references": [
        {
          "name": "外籍视图使用参考",
          "url": "https://nightingales.yuque.com/n_tech/winged/ztibbk"
        }
      ]
    }
  ]
}