{
  "title": "radio",
  "type": "object",
  "properties": {
    "value": {
      "type": "string",
      "description": "<radio> 组件标识。当该 <radio> 选中时，<radio-group> 的 change 事件会携带 <radio> 的 value",
      "defaultValue": " "
    },
    "checked": {
      "type": "boolean",
      "description": "当前是否选中",
      "defaultValue": false
    },
    "disabled": {
      "type": "boolean",
      "description": "是否禁用",
      "defaultValue": false
    },
    "color": {
      "type": "string",
      "description": "radio 的颜色，同 CSS 的 color",
      "defaultValue": "#3c76ff"
    }
  },
  "additionalProperties": false
}