{
  "title": "switch",
  "type": "object",
  "properties": {
    "checked": {
      "type": "boolean",
      "description": "是否选中",
      "defaultValue": false
    },
    "type": {
      "type": "string",
      "description": "样式，有效值：switch, checkbox",
      "defaultValue": "switch"
    },
    "color": {
      "type": "string",
      "description": "switch 的颜色，同 css 的 color"
    },
    "bindChange": {
      "tsType": "() => void",
      "description": "checked 改变时触发 change 事件，event.detail={ value:checked}"
    }
  },
  "additionalProperties": false
}