{
  "el-affix/offset-top": {
    "type": "number",
    "description": "距离窗口顶部达到指定偏移量后触发，类型为：number"
  },
  "el-affix/offset-bottom": {
    "type": "number",
    "description": "距离窗口底部达到指定偏移量后触发，类型为：number"
  },
  "el-affix/target": {
    "type": "function",
    "description": "设置 `Affix` 需要监听其滚动事件的元素，值为一个返回对应 `DOM` 元素的函数，类型为：function"
  },
  "el-alert/title": {
    "type": "string",
    "description": "标题，类型为：string"
  },
  "el-alert/type": {
    "type": "string",
    "description": "主题，类型为：string",
    "options": [
      "primary",
      "success",
      "warning",
      "info",
      "error"
    ]
  },
  "el-alert/description": {
    "type": "string",
    "description": "辅助性文字，也可通过默认 `slot` 传入，类型为：string"
  },
  "el-alert/closable": {
    "type": "boolean",
    "description": "是否可关闭，类型为：boolean"
  },
  "el-alert/center": {
    "type": "boolean",
    "description": "文字是否居中，类型为：boolean"
  },
  "el-alert/close-text": {
    "type": "string",
    "description": "关闭按钮自定义文本，类型为：string"
  },
  "el-alert/show-icon": {
    "type": "boolean",
    "description": "是否显示图标，类型为：boolean"
  },
  "el-alert/effect": {
    "type": "string",
    "description": "选择提供的主题，类型为：string",
    "options": [
      "light",
      "dark"
    ]
  },
  "el-autocomplete/placeholder": {
    "type": "string",
    "description": "输入框占位文本，类型为：string"
  },
  "el-autocomplete/clearable": {
    "type": "boolean",
    "description": "是否可清空，类型为：boolean"
  },
  "el-autocomplete/disabled": {
    "type": "boolean",
    "description": "禁用，类型为：boolean"
  },
  "el-autocomplete/readonly": {
    "type": "boolean",
    "description": "原生属性，是否只读，类型为：boolean"
  },
  "el-autocomplete/size": {
    "type": "string",
    "description": "输入框尺寸，继承全局尺寸或者表单尺寸，类型为：string",
    "options": [
      "medium",
      "small",
      "mini"
    ]
  },
  "el-autocomplete/value-key": {
    "type": "string",
    "description": "输入建议对象中用于显示的键名，类型为：string"
  },
  "el-autocomplete/value": {
    "type": "string",
    "description": "必填值，输入绑定值，类型为：string"
  },
  "el-autocomplete/v-model": {
    "type": "string",
    "description": "必填值，输入绑定值，类型为：string"
  },
  "el-autocomplete/debounce": {
    "type": "number",
    "description": "获取输入建议的去抖延时，类型为：number"
  },
  "el-autocomplete/placement": {
    "type": "string",
    "description": "下拉框出现的位置，类型为：string",
    "options": [
      "top",
      "top-start",
      "top-end",
      "bottom",
      "bottom-start",
      "bottom-end",
      "left",
      "left-start",
      "left-end",
      "right",
      "right-start",
      "right-end"
    ]
  },
  "el-autocomplete/fetch-suggestions": {
    "type": "function",
    "description": "返回输入建议的方法，仅当你的输入建议数据 `resolve` 时，通过调用 `callback(data:[])` 来返回它，类型为：function"
  },
  "el-autocomplete/popper-class": {
    "type": "string",
    "description": "`Autocomplete` 下拉列表的类名，类型为：string"
  },
  "el-autocomplete/trigger-on-focus": {
    "type": "boolean",
    "description": "是否在输入框 `focus` 时显示建议列表，类型为：boolean"
  },
  "el-autocomplete/name": {
    "type": "string",
    "description": "原生属性，类型为：string"
  },
  "el-autocomplete/select-when-unmatched": {
    "type": "boolean",
    "description": "在输入没有任何匹配建议的情况下，按下回车是否触发 `select` 事件，类型为：boolean"
  },
  "el-autocomplete/label": {
    "type": "string",
    "description": "输入框关联的 `label` 文字，类型为：string"
  },
  "el-autocomplete/prefix-icon": {
    "type": "string",
    "description": "输入框头部图标，类型为：string"
  },
  "el-autocomplete/suffix-icon": {
    "type": "string",
    "description": "输入框尾部图标，类型为：string"
  },
  "el-autocomplete/hide-loading": {
    "type": "boolean",
    "description": "是否隐藏远程加载时的加载图标，类型为：boolean"
  },
  "el-autocomplete/popper-append-to-body": {
    "type": "boolean",
    "description": "是否将下拉列表插入至 `body` 元素，在下拉列表的定位出现问题时，可将该属性设置为 `false`，类型为：boolean"
  },
  "el-autocomplete/highlight-first-item": {
    "type": "boolean",
    "description": "是否默认突出显示远程搜索建议中的第一项，类型为：boolean"
  },
  "el-autocomplete/select-on-tab": {
    "type": "boolean",
    "description": "通过 `tab` 键选择，类型为：boolean"
  },
  "el-autocomplete/visible-arrow": {
    "type": "boolean",
    "description": "是否显示 `Tooltip` 箭头，类型为：boolean"
  },
  "el-avatar/icon": {
    "type": "string",
    "description": "设置头像的图标类型，参考 [Icon](https://ui.const.team/#/component/icon) 组件，类型为：string"
  },
  "el-avatar/size": {
    "type": "number / string",
    "description": "设置头像的大小，类型为：number / string",
    "options": [
      "number",
      "medium",
      "small",
      "mini"
    ]
  },
  "el-avatar/shape": {
    "type": "string",
    "description": "设置头像的形状，类型为：string",
    "options": [
      "circle",
      "square"
    ]
  },
  "el-avatar/src": {
    "type": "string",
    "description": "图片头像的资源地址，类型为：string"
  },
  "el-avatar/src-set": {
    "type": "string",
    "description": "以逗号分隔的一个或多个字符串列表表明一系列用户代理使用的可能的图像，类型为：string"
  },
  "el-avatar/alt": {
    "type": "string",
    "description": "描述图像的替换文本，类型为：string"
  },
  "el-avatar/fit": {
    "type": "string",
    "description": "当展示类型为图片的时候，设置图片如何适应容器框，类型为：string",
    "options": [
      "fill",
      "contain",
      "cover",
      "none",
      "scale-down"
    ]
  },
  "el-backtop/target": {
    "type": "string",
    "description": "触发滚动的对象，类型为：string"
  },
  "el-backtop/visibility-height": {
    "type": "number",
    "description": "滚动高度达到此参数值才出现，类型为：number"
  },
  "el-backtop/right": {
    "type": "number",
    "description": "控制其显示位置, 距离页面右边距，类型为：number"
  },
  "el-backtop/bottom": {
    "type": "number",
    "description": "控制其显示位置, 距离页面底部距离，类型为：number"
  },
  "el-backtop/effect": {
    "type": "string",
    "description": "默认提供的主题，类型为：string",
    "options": [
      "dark",
      "light"
    ]
  },
  "el-backtop/square": {
    "type": "boolean",
    "description": "是否为方形，类型为：boolean"
  },
  "el-badge/value": {
    "type": "string / number",
    "description": "显示值，类型为：string / number"
  },
  "el-badge/max": {
    "type": "number",
    "description": "最大值，超过最大值会显示 `{max}+`，要求 `value` 是 `Number` 类型，类型为：number"
  },
  "el-badge/is-dot": {
    "type": "boolean",
    "description": "小圆点，类型为：boolean"
  },
  "el-badge/hidden": {
    "type": "boolean",
    "description": "隐藏 `Badge`，类型为：boolean"
  },
  "el-badge/type": {
    "type": "string",
    "description": "类型，类型为：string",
    "options": [
      "primary",
      "success",
      "warning",
      "danger",
      "info"
    ]
  },
  "el-badge/show-zero": {
    "type": "boolean",
    "description": "值为零时是否显示 `Badge`，类型为：boolean"
  },
  "el-badge/background-color": {
    "type": "string",
    "description": "背景色，类型为：string"
  },
  "el-badge/offset": {
    "type": "array",
    "description": "`Badge` 的偏移量，格式是`[左，上]`代表状态点从左侧和默认位置顶部的偏移，类型为：array"
  },
  "el-badge/badge-style": {
    "type": "object",
    "description": "自定义 `Badge` 样式，如果样式复杂建议使用 `badge-class`，类型为：object"
  },
  "el-badge/badge-class": {
    "type": "string",
    "description": "自定义 `Badge` 类名，类型为：string"
  },
  "el-breadcrumb/separator": {
    "type": "string",
    "description": "分隔符，类型为：string"
  },
  "el-breadcrumb/size": {
    "type": "string",
    "description": "尺寸，继承全局尺寸，类型为：string",
    "options": [
      "medium",
      "small",
      "mini"
    ]
  },
  "el-breadcrumb/separator-class": {
    "type": "string",
    "description": "图标分隔符 `class`，类型为：string"
  },
  "el-breadcrumb-item/title": {
    "type": "string",
    "description": "标题，此属性优先级高于插槽，类型为：string"
  },
  "el-breadcrumb-item/to": {
    "type": "string / object",
    "description": "路由跳转对象，同 `vue-router` 的 `to`，类型为：string / object"
  },
  "el-breadcrumb-item/replace": {
    "type": "boolean",
    "description": "在使用 `to` 进行路由跳转时，启用 `replace` 将不会向 `history` 添加新记录，类型为：boolean"
  },
  "el-button/size": {
    "type": "string",
    "description": "尺寸，类型为：string",
    "options": [
      "medium",
      "small",
      "mini"
    ]
  },
  "el-button/type": {
    "type": "string",
    "description": "类型，类型为：string",
    "options": [
      "primary",
      "success",
      "warning",
      "danger",
      "info",
      "text"
    ]
  },
  "el-button/plain": {
    "type": "boolean",
    "description": "是否朴素按钮，类型为：boolean"
  },
  "el-button/round": {
    "type": "boolean",
    "description": "是否圆角按钮，类型为：boolean"
  },
  "el-button/circle": {
    "type": "boolean",
    "description": "是否圆形按钮，类型为：boolean"
  },
  "el-button/dashed": {
    "type": "boolean",
    "description": "是否虚线按钮，类型为：boolean"
  },
  "el-button/square": {
    "type": "boolean",
    "description": "是否方形按钮，类型为：boolean"
  },
  "el-button/loading": {
    "type": "boolean",
    "description": "是否加载中状态，类型为：boolean"
  },
  "el-button/disabled": {
    "type": "boolean",
    "description": "是否禁用状态，类型为：boolean"
  },
  "el-button/icon": {
    "type": "string",
    "description": "图标类名，类型为：string"
  },
  "el-button/icon-right": {
    "type": "string",
    "description": "图标类名，显示在文字右侧，类型为：string"
  },
  "el-button/autofocus": {
    "type": "boolean",
    "description": "是否默认聚焦，类型为：boolean"
  },
  "el-button/native-type": {
    "type": "string",
    "description": "原生 `type` 属性，类型为：string",
    "options": [
      "button",
      "submit",
      "reset"
    ]
  },
  "el-calendar/value": {
    "type": "date / string / number",
    "description": "绑定值，类型为：date / string / number"
  },
  "el-calendar/v-model": {
    "type": "date / string / number",
    "description": "绑定值，类型为：date / string / number"
  },
  "el-calendar/range": {
    "type": "array",
    "description": "时间范围，包括开始时间与结束时间，开始时间必须是周一，结束时间必须是周日，且时间跨度不能超过两个月，类型为：array"
  },
  "el-calendar/first-day-of-week": {
    "type": "number",
    "description": "周起始日，类型为：number",
    "options": [
      "1",
      "2",
      "3",
      "4",
      "5",
      "6",
      "7"
    ]
  },
  "el-card/header": {
    "type": "string",
    "description": "设置 `header`，也可以通过 `slot#header` 传入 `DOM`，类型为：string"
  },
  "el-card/footer": {
    "type": "string",
    "description": "设置 `footer`，也可以通过 `slot#footer` 传入 `DOM`，类型为：string"
  },
  "el-card/body-style": {
    "type": "object",
    "description": "设置 `body` 的样式，类型为：object"
  },
  "el-card/shadow": {
    "type": "string",
    "description": "设置阴影显示时机，类型为：string",
    "options": [
      "always",
      "hover",
      "never"
    ]
  },
  "el-carousel/width": {
    "type": "string",
    "description": "走马灯的宽度，类型为：string"
  },
  "el-carousel/height": {
    "type": "string",
    "description": "走马灯的高度，类型为：string"
  },
  "el-carousel/initial-index": {
    "type": "number",
    "description": "初始状态激活的幻灯片的索引，从 `0` 开始，类型为：number"
  },
  "el-carousel/trigger": {
    "type": "string",
    "description": "指示器的触发方式，类型为：string",
    "options": [
      "click"
    ]
  },
  "el-carousel/autoplay": {
    "type": "boolean",
    "description": "是否自动切换，类型为：boolean"
  },
  "el-carousel/interval": {
    "type": "number",
    "description": "自动切换的时间间隔，单位为毫秒，类型为：number"
  },
  "el-carousel/indicator-position": {
    "type": "string",
    "description": "指示器的位置，类型为：string",
    "options": [
      "outside",
      "none"
    ]
  },
  "el-carousel/arrow": {
    "type": "string",
    "description": "切换箭头的显示时机，类型为：string",
    "options": [
      "always",
      "hover",
      "never"
    ]
  },
  "el-carousel/type": {
    "type": "string",
    "description": "走马灯的类型，类型为：string",
    "options": [
      "card"
    ]
  },
  "el-carousel/loop": {
    "type": "boolean",
    "description": "是否循环显示，类型为：boolean"
  },
  "el-carousel/direction": {
    "type": "string",
    "description": "走马灯展示的方向，类型为：string",
    "options": [
      "horizontal",
      "vertical"
    ]
  },
  "el-carousel-item/name": {
    "type": "string",
    "description": "幻灯片的名字，可用作 `setActiveItem` 的参数，类型为：string"
  },
  "el-carousel-item/label": {
    "type": "string",
    "description": "该幻灯片所对应指示器的文本，类型为：string"
  },
  "el-carousel-item/lazy": {
    "type": "boolean",
    "description": "是否懒加载，类型为：boolean"
  },
  "el-cascader/value": {
    "type": "string / number / object",
    "description": "选中项绑定值，类型为：string / number / object"
  },
  "el-cascader/v-model": {
    "type": "string / number / object",
    "description": "选中项绑定值，类型为：string / number / object"
  },
  "el-cascader/options": {
    "type": "array",
    "description": "可选项数据源，键名可通过 `Props` 属性配置，类型为：array"
  },
  "el-cascader/props": {
    "type": "object",
    "description": "配置选项，具体见[Props](https://ui.const.team/#/component/cascader#props)，类型为：object"
  },
  "el-cascader/size": {
    "type": "string",
    "description": "尺寸，继承全局尺寸或者表单尺寸，类型为：string",
    "options": [
      "medium",
      "small",
      "mini"
    ]
  },
  "el-cascader/placeholder": {
    "type": "string",
    "description": "输入框占位文本，类型为：string"
  },
  "el-cascader/placement": {
    "type": "string",
    "description": "下拉框出现的位置，类型为：string",
    "options": [
      "top",
      "top-start",
      "top-end",
      "bottom",
      "bottom-start",
      "bottom-end",
      "left",
      "left-start",
      "left-end",
      "right",
      "right-start",
      "right-end"
    ]
  },
  "el-cascader/disabled": {
    "type": "boolean",
    "description": "是否禁用，类型为：boolean"
  },
  "el-cascader/clearable": {
    "type": "boolean",
    "description": "是否支持清空选项，类型为：boolean"
  },
  "el-cascader/show-all-levels": {
    "type": "boolean",
    "description": "输入框中是否显示选中值的完整路径，类型为：boolean"
  },
  "el-cascader/collapse-tags": {
    "type": "boolean",
    "description": "多选模式下是否折叠 `Tag`，类型为：boolean"
  },
  "el-cascader/collapse-tags-max-num": {
    "type": "number",
    "description": "多选模式下设置多少后开始折叠，类型为：number"
  },
  "el-cascader/separator": {
    "type": "string",
    "description": "选项分隔符，类型为：string"
  },
  "el-cascader/filterable": {
    "type": "boolean",
    "description": "是否可搜索选项，类型为：boolean"
  },
  "el-cascader/filter-method": {
    "type": "function",
    "description": "自定义搜索逻辑，第一个参数是节点 `node`，第二个参数是搜索关键词 `keyword`，通过返回布尔值表示是否命中，类型为：function"
  },
  "el-cascader/debounce": {
    "type": "number",
    "description": "搜索关键词输入的去抖延迟，单位毫秒，类型为：number"
  },
  "el-cascader/before-filter": {
    "type": "function",
    "description": "筛选之前的钩子，参数为输入的值，若返回 `false` 或者返回 `Promise` 且被 `reject`，则停止筛选，类型为：function"
  },
  "el-cascader/popper-class": {
    "type": "string",
    "description": "自定义浮层类名，类型为：string"
  },
  "el-cascader/option-max-width": {
    "type": "string / number",
    "description": "选项框最大宽度，默认不限制，类型为：string / number"
  },
  "el-cascader/popper-max-width": {
    "type": "string / number",
    "description": "折叠下拉最大宽度，类型为：string / number"
  },
  "el-cascader/popper-append-to-body": {
    "type": "boolean",
    "description": "是否将弹出框插入至 `body` 元素，在弹出框的定位出现问题时，可将该属性设置为 `false`，类型为：boolean"
  },
  "el-cascader/visible-arrow": {
    "type": "boolean",
    "description": "是否显示 `Tooltip` 箭头，类型为：boolean"
  },
  "el-cascader/overlay": {
    "type": "boolean",
    "description": "搜索框是否显示在下拉菜单中，类型为：boolean"
  },
  "el-cascader/tag-type": {
    "type": "string",
    "description": "标签类型，类型为：string",
    "options": [
      "success",
      "info",
      "warning",
      "danger"
    ]
  },
  "el-cascader-panel/value": {
    "type": "string / array",
    "description": "选中项绑定值，类型为：string / array"
  },
  "el-cascader-panel/v-model": {
    "type": "string / array",
    "description": "选中项绑定值，类型为：string / array"
  },
  "el-cascader-panel/options": {
    "type": "array",
    "description": "可选项数据源，键名可通过 `Props` 属性配置，类型为：array"
  },
  "el-cascader-panel/props": {
    "type": "object",
    "description": "配置选项，具体见[Props](https://ui.const.team/#/component/cascader#props)，类型为：object"
  },
  "el-cascader-panel/size": {
    "type": "string",
    "description": "尺寸，类型为：string",
    "options": [
      "medium",
      "small",
      "mini"
    ]
  },
  "el-checkbox/value": {
    "type": "string / number / boolean",
    "description": "绑定值，类型为：string / number / boolean"
  },
  "el-checkbox/v-model": {
    "type": "string / number / boolean",
    "description": "绑定值，类型为：string / number / boolean"
  },
  "el-checkbox/label": {
    "type": "string / number / boolean",
    "description": "选中状态的值（只有在 `checkbox-group` 或者绑定对象类型为 `Array` 时有效），类型为：string / number / boolean"
  },
  "el-checkbox/true-label": {
    "type": "string / number",
    "description": "选中时的值，类型为：string / number"
  },
  "el-checkbox/false-label": {
    "type": "string / number",
    "description": "没有选中时的值，类型为：string / number"
  },
  "el-checkbox/disabled": {
    "type": "boolean",
    "description": "是否禁用，类型为：boolean"
  },
  "el-checkbox/border": {
    "type": "boolean",
    "description": "是否显示边框，类型为：boolean"
  },
  "el-checkbox/size": {
    "type": "string",
    "description": "`Checkbox` 的尺寸，继承全局尺寸或者表单尺寸，类型为：string",
    "options": [
      "medium",
      "small",
      "mini"
    ]
  },
  "el-checkbox/name": {
    "type": "string",
    "description": "原生 `name` 属性，类型为：string"
  },
  "el-checkbox/checked": {
    "type": "boolean",
    "description": "当前是否勾选，类型为：boolean"
  },
  "el-checkbox/indeterminate": {
    "type": "boolean",
    "description": "设置 `indeterminate` 状态，只负责样式控制，类型为：boolean"
  },
  "el-checkbox-button/label": {
    "type": "string / number / boolean",
    "description": "选中状态的值（只有在 `checkbox-group` 或者绑定对象类型为 `Array` 时有效），类型为：string / number / boolean"
  },
  "el-checkbox-button/true-label": {
    "type": "string / number",
    "description": "选中时的值，类型为：string / number"
  },
  "el-checkbox-button/false-label": {
    "type": "string / number",
    "description": "没有选中时的值，类型为：string / number"
  },
  "el-checkbox-button/disabled": {
    "type": "boolean",
    "description": "是否禁用，类型为：boolean"
  },
  "el-checkbox-button/name": {
    "type": "string",
    "description": "原生 `name` 属性，类型为：string"
  },
  "el-checkbox-button/checked": {
    "type": "boolean",
    "description": "当前是否勾选，类型为：boolean"
  },
  "el-checkbox-tag/label": {
    "type": "string / number / boolean",
    "description": "选中状态的值（只有在 `checkbox-group` 或者绑定对象类型为 `Array` 时有效），类型为：string / number / boolean"
  },
  "el-checkbox-tag/true-label": {
    "type": "string / number",
    "description": "选中时的值，类型为：string / number"
  },
  "el-checkbox-tag/false-label": {
    "type": "string / number",
    "description": "没有选中时的值，类型为：string / number"
  },
  "el-checkbox-tag/disabled": {
    "type": "boolean",
    "description": "是否禁用，类型为：boolean"
  },
  "el-checkbox-tag/name": {
    "type": "string",
    "description": "原生 `name` 属性，类型为：string"
  },
  "el-checkbox-tag/icon": {
    "type": "string",
    "description": "图标类名，类型为：string"
  },
  "el-checkbox-tag/type": {
    "type": "string",
    "description": "类型，类型为：string",
    "options": [
      "primary",
      "success",
      "warning",
      "danger",
      "info"
    ]
  },
  "el-checkbox-tag/checked": {
    "type": "boolean",
    "description": "当前是否勾选，类型为：boolean"
  },
  "el-checkbox-group/value": {
    "type": "array",
    "description": "绑定值，类型为：array"
  },
  "el-checkbox-group/v-model": {
    "type": "array",
    "description": "绑定值，类型为：array"
  },
  "el-checkbox-group/size": {
    "type": "string",
    "description": "多选框组尺寸，继承全局尺寸或者表单尺寸，类型为：string",
    "options": [
      "medium",
      "small",
      "mini"
    ]
  },
  "el-checkbox-group/disabled": {
    "type": "boolean",
    "description": "是否禁用，类型为：boolean"
  },
  "el-checkbox-group/min": {
    "type": "number",
    "description": "可被勾选的 `Checkbox` 的最小数量，类型为：number"
  },
  "el-checkbox-group/max": {
    "type": "number",
    "description": "可被勾选的 `Checkbox` 的最大数量，类型为：number"
  },
  "el-checkbox-group/text-color": {
    "type": "string",
    "description": "按钮形式的 `Checkbox` 激活时的文本颜色，类型为：string"
  },
  "el-checkbox-group/fill": {
    "type": "string",
    "description": "按钮形式的 `Checkbox` 激活时的填充色和边框色，类型为：string"
  },
  "el-collapse/value": {
    "type": "string / array",
    "description": "当前激活的面板(如果是手风琴模式，绑定值类型需要为 `String` ，否则为 `Array`)，类型为：string / array"
  },
  "el-collapse/v-model": {
    "type": "string / array",
    "description": "当前激活的面板(如果是手风琴模式，绑定值类型需要为 `String` ，否则为 `Array`)，类型为：string / array"
  },
  "el-collapse/accordion": {
    "type": "boolean",
    "description": "是否手风琴模式，类型为：boolean"
  },
  "el-collapse/icon-text": {
    "type": "boolean",
    "description": "展开图标是否显示文字，类型为：boolean"
  },
  "el-collapse/open-text": {
    "type": "string",
    "description": "展开文字，类型为：string"
  },
  "el-collapse/close-text": {
    "type": "string",
    "description": "收起文字，类型为：string"
  },
  "el-collapse/icon-trigger": {
    "type": "boolean",
    "description": "点击图标展开收起，类型为：boolean"
  },
  "el-collapse/card": {
    "type": "boolean",
    "description": "是否卡片风格，类型为：boolean"
  },
  "el-collapse/default-expand-all": {
    "type": "boolean",
    "description": "是全部展开，类型为：boolean"
  },
  "el-collapse-item/name": {
    "type": "string / number",
    "description": "唯一标志符，类型为：string / number"
  },
  "el-collapse-item/title": {
    "type": "string",
    "description": "面板标题，类型为：string"
  },
  "el-collapse-item/disabled": {
    "type": "boolean",
    "description": "是否禁用，类型为：boolean"
  },
  "el-collapse-item/lazy": {
    "type": "boolean",
    "description": "是否懒加载，类型为：boolean"
  },
  "el-collapse-item/trigger": {
    "type": "string",
    "description": "点击图标展开收起，类型为：string"
  },
  "el-color-picker/value": {
    "type": "string",
    "description": "绑定值，类型为：string"
  },
  "el-color-picker/v-model": {
    "type": "string",
    "description": "绑定值，类型为：string"
  },
  "el-color-picker/disabled": {
    "type": "boolean",
    "description": "是否禁用，类型为：boolean"
  },
  "el-color-picker/readonly": {
    "type": "boolean",
    "description": "是否只读，类型为：boolean"
  },
  "el-color-picker/clearable": {
    "type": "boolean",
    "description": "是否显示清除按钮，类型为：boolean"
  },
  "el-color-picker/size": {
    "type": "string",
    "description": "尺寸，继承全局尺寸或者表单尺寸，类型为：string",
    "options": [
      "medium",
      "small",
      "mini"
    ]
  },
  "el-color-picker/show-alpha": {
    "type": "boolean",
    "description": "是否支持透明度选择，类型为：boolean"
  },
  "el-color-picker/color-format": {
    "type": "string",
    "description": "写入 `v-model` 的颜色的格式，类型为：string",
    "options": [
      "hsl",
      "hsv",
      "hex",
      "rgb"
    ]
  },
  "el-color-picker/popper-class": {
    "type": "string",
    "description": "下拉框的类名，类型为：string"
  },
  "el-color-picker/predefine": {
    "type": "array",
    "description": "预定义颜色，类型为：array"
  },
  "el-color-picker/append-to-body": {
    "type": "boolean",
    "description": "下拉面板是否插入至 `body` 元素上，类型为：boolean"
  },
  "el-color-picker/visible-arrow": {
    "type": "boolean",
    "description": "是否显示 `Tooltip` 箭头，类型为：boolean"
  },
  "el-color-picker/placement": {
    "type": "string",
    "description": "下拉框出现的位置，类型为：string",
    "options": [
      "top",
      "top-start",
      "top-end",
      "bottom",
      "bottom-start",
      "bottom-end",
      "left",
      "left-start",
      "left-end",
      "right",
      "right-start",
      "right-end"
    ]
  },
  "el-container/direction": {
    "type": "string",
    "description": "子元素的排列方向，类型为：string",
    "options": [
      "horizontal",
      "vertical"
    ]
  },
  "el-header/height": {
    "type": "string",
    "description": "顶栏高度，类型为：string"
  },
  "el-aside/width": {
    "type": "string",
    "description": "侧边栏宽度，类型为：string"
  },
  "el-footer/height": {
    "type": "string",
    "description": "底栏高度，类型为：string"
  },
  "el-date-picker/value": {
    "type": "date / array",
    "description": "绑定值，类型为：date / array"
  },
  "el-date-picker/v-model": {
    "type": "date / array",
    "description": "绑定值，类型为：date / array"
  },
  "el-date-picker/readonly": {
    "type": "boolean",
    "description": "完全只读，类型为：boolean"
  },
  "el-date-picker/disabled": {
    "type": "boolean",
    "description": "禁用，类型为：boolean"
  },
  "el-date-picker/editable": {
    "type": "boolean",
    "description": "文本框可输入，类型为：boolean"
  },
  "el-date-picker/clearable": {
    "type": "boolean",
    "description": "是否显示清除按钮，类型为：boolean"
  },
  "el-date-picker/size": {
    "type": "string",
    "description": "输入框尺寸，继承全局尺寸或者表单尺寸，类型为：string",
    "options": [
      "medium",
      "small",
      "mini"
    ]
  },
  "el-date-picker/placeholder": {
    "type": "string",
    "description": "非范围选择时的占位内容，类型为：string"
  },
  "el-date-picker/start-placeholder": {
    "type": "string",
    "description": "范围选择时开始日期的占位内容，类型为：string"
  },
  "el-date-picker/end-placeholder": {
    "type": "string",
    "description": "范围选择时结束日期的占位内容，类型为：string"
  },
  "el-date-picker/type": {
    "type": "string",
    "description": "显示类型，类型为：string",
    "options": [
      "year",
      "years",
      "yearrange",
      "quarter",
      "quarters",
      "quarterrange",
      "month",
      "months",
      "monthrange",
      "week",
      "weeks",
      "weekrange",
      "date",
      "dates",
      "daterange",
      "datetime",
      "datetimerange"
    ]
  },
  "el-date-picker/format": {
    "type": "string",
    "description": "显示在输入框中的格式，类型为：string"
  },
  "el-date-picker/placement": {
    "type": "string",
    "description": "下拉框出现的位置，类型为：string",
    "options": [
      "top",
      "top-start",
      "top-end",
      "bottom",
      "bottom-start",
      "bottom-end",
      "left",
      "left-start",
      "left-end",
      "right",
      "right-start",
      "right-end"
    ]
  },
  "el-date-picker/popper-class": {
    "type": "string",
    "description": "`DatePicker` 下拉框的类名，类型为：string"
  },
  "el-date-picker/picker-options": {
    "type": "object",
    "description": "当前时间日期选择器特有的选项参考，[PickerOptions](https://ui.const.team/#/component/date-picker#pickeroptions)，类型为：object"
  },
  "el-date-picker/range-separator": {
    "type": "string",
    "description": "选择范围时的分隔符，类型为：string"
  },
  "el-date-picker/default-value": {
    "type": "date",
    "description": "可选，选择器打开时默认显示的时间，类型为：date"
  },
  "el-date-picker/default-time": {
    "type": "string",
    "description": "范围选择时选中日期所使用的当日内具体时刻，类型为：string"
  },
  "el-date-picker/value-format": {
    "type": "string",
    "description": "可选，绑定值的格式，不指定则绑定值为 `Date` 对象，类型为：string"
  },
  "el-date-picker/name": {
    "type": "string",
    "description": "原生属性，类型为：string"
  },
  "el-date-picker/unlink-panels": {
    "type": "boolean",
    "description": "在范围选择器里取消两个日期面板之间的联动，类型为：boolean"
  },
  "el-date-picker/prefix-icon": {
    "type": "string",
    "description": "自定义头部图标的类名，类型为：string"
  },
  "el-date-picker/clear-icon": {
    "type": "string",
    "description": "自定义清空图标的类名，类型为：string"
  },
  "el-date-picker/validate-event": {
    "type": "boolean",
    "description": "输入时是否触发表单的校验，类型为：boolean"
  },
  "el-date-picker/append-to-body": {
    "type": "boolean",
    "description": "`DatePicker` 自身是否插入至 `body` 元素上，类型为：boolean"
  },
  "el-date-picker/visible-arrow": {
    "type": "boolean",
    "description": "是否显示 `Tooltip` 箭头，类型为：boolean"
  },
  "el-date-picker/show-week-number": {
    "type": "boolean",
    "description": "是否显示周次，仅在周类型下有效，类型为：boolean"
  },
  "el-date-picker/controllable": {
    "type": "boolean",
    "description": "是否键盘上下左右控制选择日期，当在多选日期时配置为 `true` 不会生效，类型为：boolean"
  },
  "el-descriptions/border": {
    "type": "boolean",
    "description": "是否带有边框，类型为：boolean"
  },
  "el-descriptions/column": {
    "type": "number",
    "description": "一行 `<el-descriptions-item>` 的数量，类型为：number"
  },
  "el-descriptions/direction": {
    "type": "string",
    "description": "排列的方向，类型为：string",
    "options": [
      "vertical",
      "horizontal"
    ]
  },
  "el-descriptions/size": {
    "type": "string",
    "description": "列表的尺寸，继承全局尺寸，类型为：string",
    "options": [
      "medium",
      "small",
      "mini"
    ]
  },
  "el-descriptions/title": {
    "type": "string",
    "description": "标题文本，显示在左上方，类型为：string"
  },
  "el-descriptions/extra": {
    "type": "string",
    "description": "操作区文本，显示在右上方，类型为：string"
  },
  "el-descriptions/colon": {
    "type": "boolean",
    "description": "是否显示冒号，类型为：boolean"
  },
  "el-descriptions/label-class-name": {
    "type": "string",
    "description": "自定义标签类名，类型为：string"
  },
  "el-descriptions/content-class-name": {
    "type": "string",
    "description": "自定义内容类名，类型为：string"
  },
  "el-descriptions/label-style": {
    "type": "object",
    "description": "自定义标签样式，类型为：object"
  },
  "el-descriptions/content-style": {
    "type": "object",
    "description": "自定义内容样式，类型为：object"
  },
  "el-descriptions/label-align": {
    "type": "string",
    "description": "`label` 标签对齐方式，类型为：string",
    "options": [
      "left",
      "center",
      "right"
    ]
  },
  "el-descriptions/label-width": {
    "type": "number",
    "description": "`label` 的宽度，类型为：number"
  },
  "el-descriptions-item/label": {
    "type": "string",
    "description": "标签文本，类型为：string"
  },
  "el-descriptions-item/span": {
    "type": "number",
    "description": "列的数量，类型为：number"
  },
  "el-descriptions-item/rowspan": {
    "type": "number",
    "description": "单元格应该跨越的行数，类型为：number"
  },
  "el-descriptions-item/label-align": {
    "type": "string",
    "description": "`label` 标签对齐方式（优先级高），类型为：string",
    "options": [
      "left",
      "center",
      "right"
    ]
  },
  "el-descriptions-item/label-width": {
    "type": "number",
    "description": "列的宽度（优先级高），类型为：number"
  },
  "el-descriptions-item/label-class-name": {
    "type": "string",
    "description": "自定义标签类名，类型为：string"
  },
  "el-descriptions-item/content-class-name": {
    "type": "string",
    "description": "自定义内容类名，类型为：string"
  },
  "el-descriptions-item/label-style": {
    "type": "object",
    "description": "自定义标签样式，类型为：object"
  },
  "el-descriptions-item/content-style": {
    "type": "object",
    "description": "自定义内容样式，类型为：object"
  },
  "el-dialog/visible": {
    "type": "boolean",
    "description": "是否显示 `Dialog`，支持 `.sync` 修饰符，类型为：boolean"
  },
  "el-dialog/title": {
    "type": "string",
    "description": "`Dialog` 的标题，也可通过具名 `slot` 传入，类型为：string"
  },
  "el-dialog/width": {
    "type": "string",
    "description": "`Dialog` 的宽度，类型为：string"
  },
  "el-dialog/height": {
    "type": "string",
    "description": "`Dialog` 的高度，类型为：string"
  },
  "el-dialog/min-width": {
    "type": "string",
    "description": "`Dialog` 的最小宽度，类型为：string"
  },
  "el-dialog/max-width": {
    "type": "string",
    "description": "`Dialog` 的最大宽度，类型为：string"
  },
  "el-dialog/min-height": {
    "type": "string",
    "description": "`Dialog` 的最小高度，类型为：string"
  },
  "el-dialog/max-height": {
    "type": "string",
    "description": "`Dialog` 的最大高度，类型为：string"
  },
  "el-dialog/fullscreen": {
    "type": "boolean",
    "description": "是否为全屏 `Dialog`，类型为：boolean"
  },
  "el-dialog/draggable": {
    "type": "boolean",
    "description": "是否可以通过拖动标题移动 `Dialog`，此属性设置后再改变不会生效，类型为：boolean"
  },
  "el-dialog/resizable": {
    "type": "boolean",
    "description": "是否可以拖拽改变 `Dialog` 宽高，此属性设置后再改变不会生效，类型为：boolean"
  },
  "el-dialog/top": {
    "type": "string",
    "description": "`Dialog` 中的 `margin-top` 值，类型为：string"
  },
  "el-dialog/modal": {
    "type": "boolean",
    "description": "是否需要遮罩层，类型为：boolean"
  },
  "el-dialog/penetrate": {
    "type": "boolean",
    "description": "是否可以穿透弹窗以外的内容，需要 `modal` 属性为 `false` 配合使用，类型为：boolean"
  },
  "el-dialog/modal-append-to-body": {
    "type": "boolean",
    "description": "遮罩层是否插入至 `body` 元素上，若为 `false`，则遮罩层会插入至 `Dialog` 的父元素上，类型为：boolean"
  },
  "el-dialog/append-to-body": {
    "type": "boolean",
    "description": "`Dialog` 自身是否插入至 `body` 元素上，嵌套的 `Dialog` 必须指定该属性并赋值为 `true`，类型为：boolean"
  },
  "el-dialog/lock-scroll": {
    "type": "boolean",
    "description": "是否在 `Dialog` 出现时将 `body` 滚动锁定，类型为：boolean"
  },
  "el-dialog/wrapper-class": {
    "type": "string",
    "description": "`Dialog Wrapper` 的自定义类名，类型为：string"
  },
  "el-dialog/custom-class": {
    "type": "string",
    "description": "`Dialog` 的自定义类名，类型为：string"
  },
  "el-dialog/close-on-click-modal": {
    "type": "boolean",
    "description": "是否可以通过点击 `modal` 关闭 `Dialog`，类型为：boolean"
  },
  "el-dialog/close-on-press-escape": {
    "type": "boolean",
    "description": "是否可以通过按下 `ESC` 关闭 `Dialog`，类型为：boolean"
  },
  "el-dialog/show-close": {
    "type": "boolean",
    "description": "是否显示关闭按钮，类型为：boolean"
  },
  "el-dialog/before-close": {
    "type": "function",
    "description": "关闭前的回调，会暂停 `Dialog` 的关闭，类型为：function"
  },
  "el-dialog/center": {
    "type": "boolean",
    "description": "是否对头部和底部采用居中布局，类型为：boolean"
  },
  "el-dialog/destroy-on-close": {
    "type": "boolean",
    "description": "关闭时销毁 `Dialog` 中的元素，类型为：boolean"
  },
  "el-divider/direction": {
    "type": "string",
    "description": "设置分割线方向，类型为：string",
    "options": [
      "horizontal",
      "vertical"
    ]
  },
  "el-divider/content-position": {
    "type": "string",
    "description": "设置分割线文案的位置，类型为：string",
    "options": [
      "left",
      "right",
      "center"
    ]
  },
  "el-drawer/append-to-body": {
    "type": "boolean",
    "description": "`Drawer` 自身是否插入至 `body` 元素上，嵌套的 `Drawer` 必须指定该属性并赋值为 `true`，类型为：boolean"
  },
  "el-drawer/before-close": {
    "type": "function",
    "description": "关闭前的回调，会暂停 `Drawer` 的关闭，类型为：function"
  },
  "el-drawer/close-on-press-escape": {
    "type": "boolean",
    "description": "是否可以通过按下 `ESC` 关闭 `Drawer`，类型为：boolean"
  },
  "el-drawer/custom-class": {
    "type": "string",
    "description": "`Drawer` 的自定义类名，类型为：string"
  },
  "el-drawer/destroy-on-close": {
    "type": "boolean",
    "description": "控制是否在关闭 `Drawer` 之后将子元素全部销毁，类型为：boolean"
  },
  "el-drawer/modal": {
    "type": "boolean",
    "description": "是否需要遮罩层，类型为：boolean"
  },
  "el-drawer/modal-append-to-body": {
    "type": "boolean",
    "description": "遮罩层是否插入至 `body` 元素上，若为 `false`，则遮罩层会插入至 `Drawer` 的父元素上，类型为：boolean"
  },
  "el-drawer/direction": {
    "type": "string",
    "description": "`Drawer` 打开的方向，类型为：string",
    "options": [
      "rtl",
      "ltr",
      "ttb",
      "btt"
    ]
  },
  "el-drawer/show-close": {
    "type": "boolean",
    "description": "是否显示关闭按钮，类型为：boolean"
  },
  "el-drawer/size": {
    "type": "number / string",
    "description": "`Drawer` 窗体的大小, 当使用 `Number` 类型时, 以像素为单位, 当使用 `String` 类型时, 请传入 `x%`, 否则便会以 `Number` 类型解释，类型为：number / string"
  },
  "el-drawer/title": {
    "type": "string",
    "description": "`Drawer` 的标题，也可通过具名 `slot` 传入，类型为：string"
  },
  "el-drawer/visible": {
    "type": "boolean",
    "description": "是否显示 `Drawer`，支持 `.sync` 修饰符，类型为：boolean"
  },
  "el-drawer/wrapper-closable": {
    "type": "boolean",
    "description": "点击遮罩层是否可以关闭 `Drawer`，类型为：boolean"
  },
  "el-drawer/with-header": {
    "type": "boolean",
    "description": "控制是否显示 `header` 栏, 默认为 `true`, 当此项为 `false` 时, `attribute` 和 `slot` 均不生效，类型为：boolean"
  },
  "el-dropdown/type": {
    "type": "string",
    "description": "菜单按钮类型，同 `Button` 组件（只在 `split-button` 为 `true` 的情况下有效），类型为：string"
  },
  "el-dropdown/size": {
    "type": "string",
    "description": "菜单尺寸，在 `split-button` 为 `true` 的情况下也对触发按钮生效，继承全局尺寸，类型为：string",
    "options": [
      "medium",
      "small",
      "mini"
    ]
  },
  "el-dropdown/disabled": {
    "type": "boolean",
    "description": "是否禁用，类型为：boolean"
  },
  "el-dropdown/controllable": {
    "type": "boolean",
    "description": "是否键盘控制选择，类型为：boolean"
  },
  "el-dropdown/split-button": {
    "type": "boolean",
    "description": "下拉触发元素呈现为按钮组，类型为：boolean"
  },
  "el-dropdown/placement": {
    "type": "string",
    "description": "菜单弹出位置，类型为：string",
    "options": [
      "top",
      "top-start",
      "top-end",
      "bottom",
      "bottom-start",
      "bottom-end",
      "left",
      "left-start",
      "left-end",
      "right",
      "right-start",
      "right-end"
    ]
  },
  "el-dropdown/trigger": {
    "type": "string",
    "description": "触发下拉的行为，类型为：string",
    "options": [
      "hover",
      "click",
      "contextmenu"
    ]
  },
  "el-dropdown/hide-on-click": {
    "type": "boolean",
    "description": "是否在点击菜单项后隐藏菜单，类型为：boolean"
  },
  "el-dropdown/show-timeout": {
    "type": "number",
    "description": "展开下拉菜单的延时（仅在 `trigger` 为 `hover` 时有效），类型为：number"
  },
  "el-dropdown/hide-timeout": {
    "type": "number",
    "description": "收起下拉菜单的延时（仅在 `trigger` 为 `hover` 时有效），类型为：number"
  },
  "el-dropdown/tabindex": {
    "type": "number / string",
    "description": "`Dropdown` 组件的 `tabindex`，类型为：number / string"
  },
  "el-dropdown-menu/visible-arrow": {
    "type": "boolean",
    "description": "是否显示 `Tooltip` 箭头，类型为：boolean"
  },
  "el-dropdown-menu/dropdown-max-width": {
    "type": "string / number",
    "description": "下拉框最大宽度，类型为：string / number"
  },
  "el-dropdown-item/command": {
    "type": "string / number / object",
    "description": "指令，类型为：string / number / object"
  },
  "el-dropdown-item/disabled": {
    "type": "boolean",
    "description": "禁用，类型为：boolean"
  },
  "el-dropdown-item/divided": {
    "type": "boolean",
    "description": "显示分割线，类型为：boolean"
  },
  "el-dropdown-item/icon": {
    "type": "string",
    "description": "图标类名，类型为：string"
  },
  "el-empty/image": {
    "type": "string",
    "description": "图片地址，类型为：string"
  },
  "el-empty/image-size": {
    "type": "number",
    "description": "图片大小（宽度），类型为：number"
  },
  "el-empty/description": {
    "type": "string",
    "description": "文本描述，类型为：string"
  },
  "el-form/model": {
    "type": "object",
    "description": "表单数据对象，类型为：object"
  },
  "el-form/rules": {
    "type": "object",
    "description": "表单验证规则，类型为：object"
  },
  "el-form/inline": {
    "type": "boolean",
    "description": "行内表单模式，类型为：boolean"
  },
  "el-form/grid": {
    "type": "boolean",
    "description": "栅格表单模式，类型为：boolean"
  },
  "el-form/symbol": {
    "type": "boolean",
    "description": "标题名称后带有冒号，类型为：boolean"
  },
  "el-form/gutter": {
    "type": "number",
    "description": "栅格间隔，类型为：number"
  },
  "el-form/label-position": {
    "type": "string",
    "description": "表单域标签的位置，如果值为 `left` 或者 `right` 时，则需要设置 `label-width`，类型为：string",
    "options": [
      "right",
      "left",
      "top"
    ]
  },
  "el-form/label-width": {
    "type": "string",
    "description": "表单域标签的宽度，例如 `50px`，作为 `Form` 直接子元素的 `FormItem` 会继承该值，支持 `auto` 宽度，类型为：string"
  },
  "el-form/label-max-width": {
    "type": "string",
    "description": "表单域标签的最大宽度，当 `label-width` 为 `auto` 下生效，例如 `200px`，类型为：string"
  },
  "el-form/label-ellipsis": {
    "type": "boolean",
    "description": "是否自动截断表单域文本，需要指定 `label-width`，如果为 `auto` 则不会生效，类型为：boolean"
  },
  "el-form/label-suffix": {
    "type": "string",
    "description": "表单域标签的后缀，类型为：string"
  },
  "el-form/hide-required-asterisk": {
    "type": "boolean",
    "description": "是否隐藏必填字段的标签旁边的红色星号，类型为：boolean"
  },
  "el-form/show-message": {
    "type": "boolean",
    "description": "是否显示校验错误信息，类型为：boolean"
  },
  "el-form/inline-message": {
    "type": "boolean",
    "description": "是否以行内形式展示校验信息，类型为：boolean"
  },
  "el-form/status-icon": {
    "type": "boolean",
    "description": "是否在输入框中显示校验结果反馈图标，类型为：boolean"
  },
  "el-form/validate-on-rule-change": {
    "type": "boolean",
    "description": "是否在 `rules` 属性改变后立即触发一次验证，类型为：boolean"
  },
  "el-form/size": {
    "type": "string",
    "description": "用于控制该表单内组件的尺寸，继承全局尺寸，类型为：string",
    "options": [
      "medium",
      "small",
      "mini"
    ]
  },
  "el-form/disabled": {
    "type": "boolean",
    "description": "是否禁用该表单内的所有组件，若设置为 `true`，则表单内组件上的 `disabled` 属性不再生效，类型为：boolean"
  },
  "el-form/scroll-to-error": {
    "type": "boolean",
    "description": "当校验失败时，滚动到第一个错误表单项，类型为：boolean"
  },
  "el-form/scroll-into-view-options": {
    "type": "object / boolean",
    "description": "当校验有失败结果时，滚动到第一个失败的表单项目 可通过 [scrollIntoView](https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView) 配置，类型为：object / boolean"
  },
  "el-form-item/prop": {
    "type": "string",
    "description": "表单域 `model` 字段，在使用 `validate`、`resetFields` 方法的情况下，该属性是必填的，类型为：string"
  },
  "el-form-item/label": {
    "type": "string",
    "description": "标签文本，类型为：string"
  },
  "el-form-item/span": {
    "type": "number",
    "description": "栅格占据的列数，类型为：number"
  },
  "el-form-item/label-width": {
    "type": "string",
    "description": "表单域标签的宽度，例如 `50px`，支持 `auto` 宽度，类型为：string"
  },
  "el-form-item/required": {
    "type": "boolean",
    "description": "是否必填，如不设置，则会根据校验规则自动生成，类型为：boolean"
  },
  "el-form-item/rules": {
    "type": "object",
    "description": "表单验证规则，类型为：object"
  },
  "el-form-item/error": {
    "type": "string",
    "description": "表单域验证错误信息, 设置该值会使表单验证状态变为 `error`，并显示该错误信息，类型为：string"
  },
  "el-form-item/show-message": {
    "type": "boolean",
    "description": "是否显示校验错误信息，类型为：boolean"
  },
  "el-form-item/inline-message": {
    "type": "boolean",
    "description": "以行内形式展示校验信息，类型为：boolean"
  },
  "el-form-item/size": {
    "type": "string",
    "description": "用于控制该表单域下组件的尺寸，继承全局尺寸或者表单尺寸，类型为：string",
    "options": [
      "medium",
      "small",
      "mini"
    ]
  },
  "el-image/src": {
    "type": "string",
    "description": "图片源，同原生，类型为：string"
  },
  "el-image/fit": {
    "type": "string",
    "description": "确定图片如何适应容器框，同原生 `object-fit`，类型为：string",
    "options": [
      "fill",
      "contain",
      "cover",
      "none",
      "scale-down"
    ]
  },
  "el-image/alt": {
    "type": "string",
    "description": "原生 `alt`，类型为：string"
  },
  "el-image/referrer-policy": {
    "type": "string",
    "description": "原生 `referrerPolicy`，类型为：string"
  },
  "el-image/lazy": {
    "type": "boolean",
    "description": "是否开启懒加载，类型为：boolean"
  },
  "el-image/loading": {
    "type": "string",
    "description": "浏览器加载图像的策略，和浏览器原生能力一致，类型为：string",
    "options": [
      "eager",
      "lazy"
    ]
  },
  "el-image/scroll-container": {
    "type": "string",
    "description": "开启懒加载后，监听 `scroll` 事件的容器，类型为：string"
  },
  "el-image/preview-src-list": {
    "type": "array",
    "description": "开启图片预览功能，类型为：array"
  },
  "el-image/z-index": {
    "type": "number",
    "description": "设置图片预览的 `z-index`，类型为：number"
  },
  "el-image/append-to-body": {
    "type": "boolean",
    "description": "预览框是否插入 `body` 元素，处理 `Safari` 中 `z-index` 问题，类型为：boolean"
  },
  "el-image/mask-closable": {
    "type": "boolean",
    "description": "点击遮罩层是否可以关闭预览，类型为：boolean"
  },
  "el-image/width": {
    "type": "string",
    "description": "图片宽度，类型为：string"
  },
  "el-image/height": {
    "type": "string",
    "description": "图片高度，类型为：string"
  },
  "el-image/initial-index": {
    "type": "number",
    "description": "图片预览初始图片 `index`，类型为：number"
  },
  "el-image/infinite": {
    "type": "boolean",
    "description": "是否可以无限循环预览，类型为：boolean"
  },
  "el-image/zoom-rate": {
    "type": "number",
    "description": "图像查看器缩放事件的缩放速率，类型为：number"
  },
  "el-image/min-scale": {
    "type": "number",
    "description": "图像查看器缩放事件的最小缩放比例，类型为：number"
  },
  "el-image/max-scale": {
    "type": "number",
    "description": "图像查看器缩放事件的最大缩放比例，类型为：number"
  },
  "el-input-number/value": {
    "type": "number",
    "description": "绑定值，类型为：number"
  },
  "el-input-number/v-model": {
    "type": "number",
    "description": "绑定值，类型为：number"
  },
  "el-input-number/default-value": {
    "type": "number / string",
    "description": "当用户清空输入框时设置的值，类型为：number / string",
    "options": [
      "number",
      "undefined",
      "null",
      "'min'",
      "'max'"
    ]
  },
  "el-input-number/min": {
    "type": "number",
    "description": "设置计数器允许的最小值，类型为：number"
  },
  "el-input-number/max": {
    "type": "number",
    "description": "设置计数器允许的最大值，类型为：number"
  },
  "el-input-number/step": {
    "type": "number",
    "description": "计数器步长，类型为：number"
  },
  "el-input-number/step-strictly": {
    "type": "boolean",
    "description": "是否只能输入 `step` 的倍数，类型为：boolean"
  },
  "el-input-number/precision": {
    "type": "number",
    "description": "数值精度，类型为：number"
  },
  "el-input-number/size": {
    "type": "string",
    "description": "计数器尺寸，继承全局尺寸或者表单尺寸，类型为：string",
    "options": [
      "medium",
      "small",
      "mini"
    ]
  },
  "el-input-number/disabled": {
    "type": "boolean",
    "description": "是否禁用计数器，类型为：boolean"
  },
  "el-input-number/controls": {
    "type": "boolean",
    "description": "是否使用控制按钮，类型为：boolean"
  },
  "el-input-number/controls-position": {
    "type": "string",
    "description": "控制按钮位置，类型为：string"
  },
  "el-input-number/name": {
    "type": "string",
    "description": "原生属性，类型为：string"
  },
  "el-input-number/label": {
    "type": "string",
    "description": "输入框关联的 `label` 文字，类型为：string"
  },
  "el-input-number/placeholder": {
    "type": "string",
    "description": "输入框默认 `placeholder`，类型为：string"
  },
  "el-input-range/type": {
    "type": "string",
    "description": "类型，类型为：string",
    "options": [
      "button",
      "checkbox",
      "file",
      "hidden",
      "image",
      "password",
      "radio",
      "reset",
      "submit",
      "text",
      "color",
      "date",
      "datetime",
      "datetime-local",
      "email",
      "month",
      "number",
      "range",
      "search",
      "tel",
      "time",
      "url",
      "week"
    ]
  },
  "el-input-range/value": {
    "type": "array",
    "description": "绑定值，类型为：array"
  },
  "el-input-range/v-model": {
    "type": "array",
    "description": "绑定值，类型为：array"
  },
  "el-input-range/maxlength": {
    "type": "number",
    "description": "原生属性，最大输入长度，类型为：number"
  },
  "el-input-range/minlength": {
    "type": "number",
    "description": "原生属性，最小输入长度，类型为：number"
  },
  "el-input-range/start-placeholder": {
    "type": "string",
    "description": "开始占位文本，类型为：string"
  },
  "el-input-range/end-placeholder": {
    "type": "string",
    "description": "结束占位文本，类型为：string"
  },
  "el-input-range/separator": {
    "type": "string",
    "description": "分隔符，类型为：string"
  },
  "el-input-range/prefix": {
    "type": "string",
    "description": "前缀符，类型为：string"
  },
  "el-input-range/suffix": {
    "type": "string",
    "description": "后缀符，类型为：string"
  },
  "el-input-range/clearable": {
    "type": "boolean",
    "description": "是否可清空，类型为：boolean"
  },
  "el-input-range/disabled": {
    "type": "boolean",
    "description": "禁用，类型为：boolean"
  },
  "el-input-range/size": {
    "type": "string",
    "description": "输入框尺寸，继承全局尺寸或者表单尺寸，类型为：string",
    "options": [
      "medium",
      "small",
      "mini"
    ]
  },
  "el-input-range/name": {
    "type": "string",
    "description": "原生属性，类型为：string"
  },
  "el-input-range/readonly": {
    "type": "boolean",
    "description": "原生属性，是否只读，类型为：boolean"
  },
  "el-input-range/max": {
    "type": "number",
    "description": "原生属性，设置最大值，类型为：number"
  },
  "el-input-range/min": {
    "type": "number",
    "description": "原生属性，设置最小值，类型为：number"
  },
  "el-input-range/autofocus": {
    "type": "boolean",
    "description": "原生属性，自动获取焦点，类型为：boolean"
  },
  "el-input-range/form": {
    "type": "string",
    "description": "原生属性，类型为：string"
  },
  "el-input-range/tabindex": {
    "type": "number / string",
    "description": "输入框的 `tabindex`，类型为：number / string"
  },
  "el-input-range/validate-event": {
    "type": "boolean",
    "description": "输入时是否触发表单的校验，类型为：boolean"
  },
  "el-input/type": {
    "type": "string",
    "description": "类型，类型为：string",
    "options": [
      "text",
      "textarea",
      "button",
      "checkbox",
      "file",
      "hidden",
      "image",
      "password",
      "radio",
      "reset",
      "submit",
      "text",
      "color",
      "date",
      "datetime",
      "datetime-local",
      "email",
      "month",
      "number",
      "range",
      "search",
      "tel",
      "time",
      "url",
      "week"
    ]
  },
  "el-input/value": {
    "type": "string / number",
    "description": "绑定值，类型为：string / number"
  },
  "el-input/v-model": {
    "type": "string / number",
    "description": "绑定值，类型为：string / number"
  },
  "el-input/maxlength": {
    "type": "number",
    "description": "原生属性，最大输入长度，类型为：number"
  },
  "el-input/minlength": {
    "type": "number",
    "description": "原生属性，最小输入长度，类型为：number"
  },
  "el-input/show-word-limit": {
    "type": "boolean",
    "description": "是否显示输入字数统计，只在 `type='text'` 或 `type='textarea'` 时有效，类型为：boolean"
  },
  "el-input/placeholder": {
    "type": "string",
    "description": "输入框占位文本，类型为：string"
  },
  "el-input/clearable": {
    "type": "boolean",
    "description": "是否可清空，类型为：boolean"
  },
  "el-input/show-password": {
    "type": "boolean",
    "description": "是否显示切换密码图标，类型为：boolean"
  },
  "el-input/disabled": {
    "type": "boolean",
    "description": "禁用，类型为：boolean"
  },
  "el-input/size": {
    "type": "string",
    "description": "输入框尺寸，只在 `type!='textarea'` 时有效，继承全局尺寸或者表单尺寸，类型为：string",
    "options": [
      "medium",
      "small",
      "mini"
    ]
  },
  "el-input/prefix-icon": {
    "type": "string",
    "description": "输入框头部图标，类型为：string"
  },
  "el-input/suffix-icon": {
    "type": "string",
    "description": "输入框尾部图标，类型为：string"
  },
  "el-input/rows": {
    "type": "number",
    "description": "输入框行数，只对 `type='textarea'` 有效，类型为：number"
  },
  "el-input/autosize": {
    "type": "boolean / object",
    "description": "自适应内容高度，只对 `type='textarea'` 有效，一旦开启自适应，`resize` 属性将强制为 `none`，可传入对象，如`{ minRows: 2, maxRows: 6 }`，类型为：boolean / object"
  },
  "el-input/autocomplete": {
    "type": "string",
    "description": "原生属性，自动补全，类型为：string",
    "options": [
      "on",
      "off"
    ]
  },
  "el-input/name": {
    "type": "string",
    "description": "原生属性，类型为：string"
  },
  "el-input/readonly": {
    "type": "boolean",
    "description": "原生属性，是否只读，类型为：boolean"
  },
  "el-input/max": {
    "type": "number",
    "description": "原生属性，设置最大值，类型为：number"
  },
  "el-input/min": {
    "type": "number",
    "description": "原生属性，设置最小值，类型为：number"
  },
  "el-input/step": {
    "type": "number",
    "description": "原生属性，设置输入字段的合法数字间隔，类型为：number"
  },
  "el-input/resize": {
    "type": "string",
    "description": "控制是否能被用户缩放，`IE` 下无效，类型为：string",
    "options": [
      "none",
      "both",
      "horizontal",
      "vertical"
    ]
  },
  "el-input/autofocus": {
    "type": "boolean",
    "description": "原生属性，自动获取焦点，类型为：boolean"
  },
  "el-input/form": {
    "type": "string",
    "description": "原生属性，类型为：string"
  },
  "el-input/label": {
    "type": "string",
    "description": "输入框关联的 `label` 文字，类型为：string"
  },
  "el-input/tabindex": {
    "type": "number / string",
    "description": "输入框的 `tabindex`，类型为：number / string"
  },
  "el-input/validate-event": {
    "type": "boolean",
    "description": "输入时是否触发表单的校验，类型为：boolean"
  },
  "el-input/formatter": {
    "type": "function",
    "description": "指定输入值的格式（只有当 `type` 是 `text` 时才能工作），类型为：function"
  },
  "el-input/parser": {
    "type": "function",
    "description": "指定从格式化器输入中提取的值（只有当 `type` 是 `text` 时才能工作），类型为：function"
  },
  "el-row/gutter": {
    "type": "number",
    "description": "栅格间隔，类型为：number"
  },
  "el-row/type": {
    "type": "string",
    "description": "布局模式，可选 `flex`，现代浏览器下有效，类型为：string"
  },
  "el-row/justify": {
    "type": "string",
    "description": "`flex` 布局下的水平排列方式，类型为：string",
    "options": [
      "start",
      "end",
      "center",
      "space-around",
      "space-between"
    ]
  },
  "el-row/align": {
    "type": "string",
    "description": "`flex` 布局下的垂直排列方式，类型为：string",
    "options": [
      "top",
      "middle",
      "bottom"
    ]
  },
  "el-row/tag": {
    "type": "string",
    "description": "自定义元素标签，类型为：string"
  },
  "el-col/span": {
    "type": "number",
    "description": "栅格占据的列数，类型为：number"
  },
  "el-col/offset": {
    "type": "number",
    "description": "栅格左侧的间隔格数，类型为：number"
  },
  "el-col/push": {
    "type": "number",
    "description": "栅格向右移动格数，类型为：number"
  },
  "el-col/pull": {
    "type": "number",
    "description": "栅格向左移动格数，类型为：number"
  },
  "el-col/align": {
    "type": "string",
    "description": "对齐方式，类型为：string",
    "options": [
      "left",
      "center",
      "right"
    ]
  },
  "el-col/xs": {
    "type": "number / object",
    "description": "<768px 响应式栅格数或者栅格属性对象，类型为：number / object"
  },
  "el-col/sm": {
    "type": "number / object",
    "description": "≥768px 响应式栅格数或者栅格属性对象，类型为：number / object"
  },
  "el-col/md": {
    "type": "number / object",
    "description": "≥992px 响应式栅格数或者栅格属性对象，类型为：number / object"
  },
  "el-col/lg": {
    "type": "number / object",
    "description": "≥1200px 响应式栅格数或者栅格属性对象，类型为：number / object"
  },
  "el-col/xl": {
    "type": "number / object",
    "description": "≥1920px 响应式栅格数或者栅格属性对象，类型为：number / object"
  },
  "el-col/tag": {
    "type": "string",
    "description": "自定义元素标签，类型为：string"
  },
  "el-link/type": {
    "type": "string",
    "description": "类型，类型为：string",
    "options": [
      "primary",
      "success",
      "warning",
      "danger",
      "info"
    ]
  },
  "el-link/size": {
    "type": "string",
    "description": "尺寸，继承全局尺寸，类型为：string",
    "options": [
      "medium",
      "small",
      "mini"
    ]
  },
  "el-link/target": {
    "type": "string",
    "description": "在何处打开页面上的链接，类型为：string",
    "options": [
      "_blank",
      "_self",
      "_parent",
      "_top"
    ]
  },
  "el-link/underline": {
    "type": "boolean",
    "description": "是否下划线，类型为：boolean"
  },
  "el-link/always": {
    "type": "boolean",
    "description": "始终显示下划线，类型为：boolean"
  },
  "el-link/disabled": {
    "type": "boolean",
    "description": "是否禁用状态，类型为：boolean"
  },
  "el-link/href": {
    "type": "string",
    "description": "原生 href 属性，类型为：string"
  },
  "el-link/icon": {
    "type": "string",
    "description": "图标类名，类型为：string"
  },
  "el-link/to": {
    "type": "string / object",
    "description": "跳转路由对象，注意如此参数非空会忽略 `href` 参数，类型为：string / object"
  },
  "el-link/icon-right": {
    "type": "string",
    "description": "图标类名，追加到文字右边，类型为：string"
  },
  "el-menu/mode": {
    "type": "string",
    "description": "模式，类型为：string",
    "options": [
      "horizontal",
      "vertical"
    ]
  },
  "el-menu/collapse": {
    "type": "boolean",
    "description": "是否水平折叠收起菜单（仅在 `mode` 为 `vertical` 时可用），类型为：boolean"
  },
  "el-menu/theme": {
    "type": "string",
    "description": "菜单内置主题，类型为：string",
    "options": [
      "light",
      "dark",
      "teal",
      "indigo",
      "blue/ red"
    ]
  },
  "el-menu/background-color": {
    "type": "string",
    "description": "菜单的背景色（仅支持 `hex` 格式），类型为：string"
  },
  "el-menu/text-color": {
    "type": "string",
    "description": "菜单的文字颜色（仅支持 `hex` 格式），类型为：string"
  },
  "el-menu/active-text-color": {
    "type": "string",
    "description": "当前激活菜单的文字颜色（仅支持 `hex` 格式），类型为：string"
  },
  "el-menu/active-background-color": {
    "type": "string",
    "description": "被激活菜单的背景颜色（仅支持 `hex` 格式），类型为：string"
  },
  "el-menu/default-active": {
    "type": "string",
    "description": "当前激活菜单的 `index`，类型为：string"
  },
  "el-menu/default-openeds": {
    "type": "array",
    "description": "当前打开的 `sub-menu` 的 `index` 的数组，类型为：array"
  },
  "el-menu/unique-opened": {
    "type": "boolean",
    "description": "是否只保持一个子菜单的展开，类型为：boolean"
  },
  "el-menu/menu-trigger": {
    "type": "string",
    "description": "子菜单打开的触发方式（只在 `mode` 为 `horizontal` 时有效），类型为：string",
    "options": [
      "hover",
      "click"
    ]
  },
  "el-menu/router": {
    "type": "boolean",
    "description": "是否使用 `vue-router` 的模式，启用该模式会在激活导航时以 `index` 作为 `path` 进行路由跳转，类型为：boolean"
  },
  "el-menu/collapse-transition": {
    "type": "boolean",
    "description": "是否开启折叠动画，类型为：boolean"
  },
  "el-menu/tooltip-effect": {
    "type": "string",
    "description": "`tooltip` 的 `effect` 属性，类型为：string",
    "options": [
      "dark",
      "light"
    ]
  },
  "el-sub-menu/index": {
    "type": "string",
    "description": "唯一标志，类型为：string"
  },
  "el-sub-menu/popper-class": {
    "type": "string",
    "description": "弹出菜单的自定义类名，类型为：string"
  },
  "el-sub-menu/show-timeout": {
    "type": "number",
    "description": "展开 `sub-menu` 的延时，类型为：number"
  },
  "el-sub-menu/hide-timeout": {
    "type": "number",
    "description": "收起 `sub-menu` 的延时，类型为：number"
  },
  "el-sub-menu/disabled": {
    "type": "boolean",
    "description": "是否禁用，类型为：boolean"
  },
  "el-sub-menu/popper-append-to-body": {
    "type": "boolean",
    "description": "是否将弹出菜单插入至 `body` 元素，在菜单的定位出现问题时，可尝试修改该属性，类型为：boolean"
  },
  "el-menu-item/index": {
    "type": "string",
    "description": "唯一标志，类型为：string"
  },
  "el-menu-item/route": {
    "type": "object",
    "description": "`Vue Router` 路径对象，类型为：object"
  },
  "el-menu-item/disabled": {
    "type": "boolean",
    "description": "是否禁用，类型为：boolean"
  },
  "el-menu-group/title": {
    "type": "string",
    "description": "分组标题，类型为：string"
  },
  "el-page-header/title": {
    "type": "string",
    "description": "标题，类型为：string"
  },
  "el-page-header/content": {
    "type": "string",
    "description": "内容，类型为：string"
  },
  "el-pagination/small": {
    "type": "boolean",
    "description": "是否使用小型分页样式，类型为：boolean"
  },
  "el-pagination/background": {
    "type": "boolean",
    "description": "是否为分页按钮添加背景色，类型为：boolean"
  },
  "el-pagination/border": {
    "type": "boolean",
    "description": "是否为分页按钮添加边框，类型为：boolean"
  },
  "el-pagination/align": {
    "type": "string",
    "description": "对齐方式，类型为：string",
    "options": [
      "left",
      "center",
      "right"
    ]
  },
  "el-pagination/page-size": {
    "type": "number",
    "description": "每页显示条目个数，支持 `.sync` 修饰符，类型为：number"
  },
  "el-pagination/total": {
    "type": "number",
    "description": "总条目数，类型为：number"
  },
  "el-pagination/page-count": {
    "type": "number",
    "description": "总页数，`total` 和 `page-count` 设置任意一个就可以达到显示页码的功能；如果要支持 `page-sizes` 的更改，则需要使用 `total` 属性，类型为：number"
  },
  "el-pagination/pager-count": {
    "type": "number",
    "description": "页码按钮的数量，当总页数超过该值时会折叠，类型为：number",
    "options": [
      "5",
      "7",
      "9",
      "11",
      "13",
      "15",
      "17",
      "19",
      "21"
    ]
  },
  "el-pagination/current-page": {
    "type": "number",
    "description": "当前页数，支持 `.sync` 修饰符，类型为：number"
  },
  "el-pagination/layout": {
    "type": "string",
    "description": "组件布局，子组件名用逗号分隔，类型为：string",
    "options": [
      "sizes",
      "prev",
      "pager",
      "next",
      "jumper",
      "->",
      "total",
      "slot"
    ]
  },
  "el-pagination/page-sizes": {
    "type": "array",
    "description": "每页显示个数选择器的选项设置，类型为：array"
  },
  "el-pagination/popper-class": {
    "type": "string",
    "description": "每页显示个数选择器的下拉框类名，类型为：string"
  },
  "el-pagination/prev-text": {
    "type": "string",
    "description": "替代图标显示的上一页文字，类型为：string"
  },
  "el-pagination/next-text": {
    "type": "string",
    "description": "替代图标显示的下一页文字，类型为：string"
  },
  "el-pagination/disabled": {
    "type": "boolean",
    "description": "是否禁用，类型为：boolean"
  },
  "el-pagination/hide-on-single-page": {
    "type": "boolean",
    "description": "只有一页时是否隐藏，类型为：boolean"
  },
  "el-pagination/popper-append-to-body": {
    "type": "boolean",
    "description": "解决下拉框错位，类型为：boolean"
  },
  "el-popconfirm/title": {
    "type": "string",
    "description": "标题，类型为：string"
  },
  "el-popconfirm/confirm-button-text": {
    "type": "string",
    "description": "确认按钮文字，类型为：string"
  },
  "el-popconfirm/cancel-button-text": {
    "type": "string",
    "description": "取消按钮文字，类型为：string"
  },
  "el-popconfirm/confirm-button-type": {
    "type": "string",
    "description": "确认按钮类型，类型为：string",
    "options": [
      "primary",
      "success",
      "warning",
      "danger",
      "info",
      "text"
    ]
  },
  "el-popconfirm/cancel-button-type": {
    "type": "string",
    "description": "取消按钮类型，类型为：string",
    "options": [
      "primary",
      "success",
      "warning",
      "danger",
      "info",
      "text"
    ]
  },
  "el-popconfirm/icon": {
    "type": "string",
    "description": "`Icon` 图标类名，类型为：string"
  },
  "el-popconfirm/icon-color": {
    "type": "string",
    "description": "`Icon` 图标颜色，类型为：string"
  },
  "el-popconfirm/hide-icon": {
    "type": "boolean",
    "description": "是否隐藏 `Icon`，类型为：boolean"
  },
  "el-popover/trigger": {
    "type": "string",
    "description": "触发方式，类型为：string",
    "options": [
      "click",
      "focus",
      "hover",
      "contextmenu",
      "manual"
    ]
  },
  "el-popover/title": {
    "type": "string",
    "description": "标题，类型为：string"
  },
  "el-popover/content": {
    "type": "string",
    "description": "显示的内容，也可以通过 `slot` 传入 `DOM`，类型为：string"
  },
  "el-popover/width": {
    "type": "string / number",
    "description": "当使用 `Number` 类型时, 以像素为单位, 当使用 `String` 类型时, 请传入 `x%`, 否则便会以 `Number` 类型解释，类型为：string / number"
  },
  "el-popover/max-width": {
    "type": "string / number",
    "description": "当使用 `Number` 类型时, 以像素为单位, 当使用 `String` 类型时, 请传入 `x%`, 否则便会以 `Number` 类型解释，类型为：string / number"
  },
  "el-popover/placement": {
    "type": "string",
    "description": "出现位置，类型为：string",
    "options": [
      "top",
      "top-start",
      "top-end",
      "bottom",
      "bottom-start",
      "bottom-end",
      "left",
      "left-start",
      "left-end",
      "right",
      "right-start",
      "right-end"
    ]
  },
  "el-popover/disabled": {
    "type": "boolean",
    "description": "`Popover` 是否可用，类型为：boolean"
  },
  "el-popover/value": {
    "type": "boolean",
    "description": "状态是否可见，类型为：boolean"
  },
  "el-popover/v-model": {
    "type": "boolean",
    "description": "状态是否可见，类型为：boolean"
  },
  "el-popover/offset": {
    "type": "number",
    "description": "出现位置的偏移量，类型为：number"
  },
  "el-popover/transition": {
    "type": "string",
    "description": "定义渐变动画，类型为：string"
  },
  "el-popover/visible-arrow": {
    "type": "boolean",
    "description": "是否显示 `Tooltip` 箭头，更多参数可见 [Vue-popper](https://github.com/element-component/vue-popper)，类型为：boolean"
  },
  "el-popover/popper-options": {
    "type": "object",
    "description": "[popper.js](https://popper.js.org/docs/v2/) 的参数，类型为：object"
  },
  "el-popover/popper-class": {
    "type": "string",
    "description": "为 `Popper` 添加类名，类型为：string"
  },
  "el-popover/open-delay": {
    "type": "number",
    "description": "触发方式为 `hover` 时的显示延迟，单位为毫秒，类型为：number"
  },
  "el-popover/close-delay": {
    "type": "number",
    "description": "触发方式为 `hover` 时的隐藏延迟，单位为毫秒，类型为：number"
  },
  "el-popover/append-to-body": {
    "type": "boolean",
    "description": "Popover 自身是否插入至 `body` 元素上，类型为：boolean"
  },
  "el-popover/tabindex": {
    "type": "number / string",
    "description": "Popover 组件的 `tabindex`，类型为：number / string"
  },
  "el-progress/percentage": {
    "type": "number",
    "description": "百分比（必填），类型为：number"
  },
  "el-progress/type": {
    "type": "string",
    "description": "进度条类型，类型为：string",
    "options": [
      "line",
      "circle",
      "dashboard"
    ]
  },
  "el-progress/stroke-width": {
    "type": "number",
    "description": "进度条的宽度，单位 `px`，类型为：number"
  },
  "el-progress/text-inside": {
    "type": "boolean",
    "description": "进度条显示文字内置在进度条内（只在 `type='line'` 时可用），类型为：boolean"
  },
  "el-progress/status": {
    "type": "string",
    "description": "进度条当前状态，类型为：string",
    "options": [
      "success",
      "exception",
      "warning",
      "default"
    ]
  },
  "el-progress/color": {
    "type": "string / function / array",
    "description": "进度条背景色（会覆盖 `status` 状态颜色），类型为：string / function / array"
  },
  "el-progress/stroke-color": {
    "type": "string",
    "description": "轮廓背景色颜色，类型为：string"
  },
  "el-progress/width": {
    "type": "number",
    "description": "环形进度条画布宽度（只在 `type` 为 `circle` 或 `dashboard` 时可用），类型为：number"
  },
  "el-progress/show-text": {
    "type": "boolean",
    "description": "是否显示进度条文字内容，类型为：boolean"
  },
  "el-progress/active": {
    "type": "boolean",
    "description": "进度条动效（只在 `type='line'` 并且 `percentage` 小于 `100` 时生效），类型为：boolean"
  },
  "el-progress/stroke-linecap": {
    "type": "string",
    "description": "`circle` / `dashboard` 类型路径两端的形状，类型为：string",
    "options": [
      "butt",
      "round",
      "square"
    ]
  },
  "el-progress/text-inside-color": {
    "type": "string",
    "description": "指定进度条内部字体颜色（支持 `hex` 格式），类型为：string"
  },
  "el-progress/text-outside-color": {
    "type": "string",
    "description": "指定进度条外部字体颜色（支持 `hex` 格式），类型为：string"
  },
  "el-progress/indeterminate": {
    "type": "boolean",
    "description": "是否为动画进度条，类型为：boolean"
  },
  "el-progress/duration": {
    "type": "number",
    "description": "控制动画进度条速度和条纹进度条流动速度，类型为：number"
  },
  "el-progress/striped": {
    "type": "boolean",
    "description": "在进度条上增加条纹，类型为：boolean"
  },
  "el-progress/striped-flow": {
    "type": "boolean",
    "description": "让进度条上的条纹流动起来，类型为：boolean"
  },
  "el-radio/value": {
    "type": "string / number / boolean",
    "description": "绑定值，类型为：string / number / boolean"
  },
  "el-radio/v-model": {
    "type": "string / number / boolean",
    "description": "绑定值，类型为：string / number / boolean"
  },
  "el-radio/label": {
    "type": "string / number / boolean",
    "description": "`Radio` 的 `value`，类型为：string / number / boolean"
  },
  "el-radio/disabled": {
    "type": "boolean",
    "description": "是否禁用，类型为：boolean"
  },
  "el-radio/border": {
    "type": "boolean",
    "description": "是否显示边框，类型为：boolean"
  },
  "el-radio/size": {
    "type": "string",
    "description": "`Radio` 的尺寸，继承全局尺寸或者表单尺寸，类型为：string",
    "options": [
      "medium",
      "small",
      "mini"
    ]
  },
  "el-radio/name": {
    "type": "string",
    "description": "原生 `name` 属性，类型为：string"
  },
  "el-radio-button/name": {
    "type": "string",
    "description": "原生 `name` 属性，类型为：string"
  },
  "el-radio-button/disabled": {
    "type": "boolean",
    "description": "是否禁用，类型为：boolean"
  },
  "el-radio-button/label": {
    "type": "string / number",
    "description": "`Radio` 的 `value`，类型为：string / number"
  },
  "el-radio-tag/label": {
    "type": "string / number",
    "description": "`Radio` 的 `value`，类型为：string / number"
  },
  "el-radio-tag/disabled": {
    "type": "boolean",
    "description": "是否禁用，类型为：boolean"
  },
  "el-radio-tag/name": {
    "type": "string",
    "description": "原生 `name` 属性，类型为：string"
  },
  "el-radio-tag/icon": {
    "type": "string",
    "description": "图标类名，类型为：string"
  },
  "el-radio-tag/type": {
    "type": "string",
    "description": "类型，类型为：string",
    "options": [
      "primary",
      "success",
      "warning",
      "danger",
      "info"
    ]
  },
  "el-radio-group/value": {
    "type": "string / number / boolean",
    "description": "绑定值，类型为：string / number / boolean"
  },
  "el-radio-group/v-model": {
    "type": "string / number / boolean",
    "description": "绑定值，类型为：string / number / boolean"
  },
  "el-radio-group/size": {
    "type": "string",
    "description": "单选框组尺寸，继承全局尺寸或者表单尺寸，类型为：string",
    "options": [
      "medium",
      "small",
      "mini"
    ]
  },
  "el-radio-group/disabled": {
    "type": "boolean",
    "description": "是否禁用，类型为：boolean"
  },
  "el-radio-group/clearable": {
    "type": "boolean",
    "description": "是否可清除单选，类型为：boolean"
  },
  "el-radio-group/controllable": {
    "type": "boolean",
    "description": "是否禁用键盘控制，类型为：boolean"
  },
  "el-radio-group/text-color": {
    "type": "string",
    "description": "按钮形式的 `Radio` 激活时的文本颜色，类型为：string"
  },
  "el-radio-group/fill": {
    "type": "string",
    "description": "按钮形式的 `Radio` 激活时的填充色和边框色，类型为：string"
  },
  "el-rate/value": {
    "type": "number",
    "description": "绑定值，类型为：number"
  },
  "el-rate/v-model": {
    "type": "number",
    "description": "绑定值，类型为：number"
  },
  "el-rate/max": {
    "type": "number",
    "description": "最大分值，类型为：number"
  },
  "el-rate/disabled": {
    "type": "boolean",
    "description": "是否为只读，类型为：boolean"
  },
  "el-rate/size": {
    "type": "string",
    "description": "`Rate` 的尺寸，继承全局尺寸或者表单尺寸，类型为：string",
    "options": [
      "medium",
      "small",
      "mini"
    ]
  },
  "el-rate/controllable": {
    "type": "boolean",
    "description": "是否禁用键盘控制，类型为：boolean"
  },
  "el-rate/clearable": {
    "type": "boolean",
    "description": "是否可清空，类型为：boolean"
  },
  "el-rate/allow-half": {
    "type": "boolean",
    "description": "是否允许半选，类型为：boolean"
  },
  "el-rate/low-threshold": {
    "type": "number",
    "description": "低分和中等分数的界限值，值本身被划分在低分中，类型为：number"
  },
  "el-rate/high-threshold": {
    "type": "number",
    "description": "高分和中等分数的界限值，值本身被划分在高分中，类型为：number"
  },
  "el-rate/colors": {
    "type": "array / object",
    "description": "`Icon` 的颜色，若传入数组，共有 3 个元素，为 3 个分段所对应的颜色；若传入对象，可自定义分段，键名为分段的界限值，键值为对应的颜色，类型为：array / object"
  },
  "el-rate/void-color": {
    "type": "string",
    "description": "未选中 `Icon` 的颜色，类型为：string"
  },
  "el-rate/disabled-void-color": {
    "type": "string",
    "description": "只读时未选中 `Icon` 的颜色，类型为：string"
  },
  "el-rate/icon-classes": {
    "type": "array / object",
    "description": "`Icon` 的类名，若传入数组，共有 3 个元素，为 3 个分段所对应的类名；若传入对象，可自定义分段，键名为分段的界限值，键值为对应的类名，类型为：array / object"
  },
  "el-rate/void-icon-class": {
    "type": "string",
    "description": "未选中 `Icon` 的类名，类型为：string"
  },
  "el-rate/disabled-void-icon-class": {
    "type": "string",
    "description": "只读时未选中 `Icon` 的类名，类型为：string"
  },
  "el-rate/show-text": {
    "type": "boolean",
    "description": "是否显示辅助文字，若为真，则会从 `texts` 数组中选取当前分数对应的文字内容，类型为：boolean"
  },
  "el-rate/show-score": {
    "type": "boolean",
    "description": "是否显示当前分数，`show-score` 和 `show-text` 不能同时为真，类型为：boolean"
  },
  "el-rate/text-color": {
    "type": "string",
    "description": "辅助文字的颜色，类型为：string"
  },
  "el-rate/texts": {
    "type": "array",
    "description": "辅助文字数组，类型为：array"
  },
  "el-rate/score-template": {
    "type": "string",
    "description": "分数显示模板，类型为：string"
  },
  "el-result/title": {
    "type": "string",
    "description": "标题，类型为：string"
  },
  "el-result/sub-title": {
    "type": "string",
    "description": "二级标题，类型为：string"
  },
  "el-result/icon": {
    "type": "string",
    "description": "图标类型，类型为：string",
    "options": [
      "success",
      "warning",
      "info",
      "error",
      "wait",
      "loading",
      "admin",
      "error401",
      "error403",
      "error404",
      "error500",
      "unstart",
      "start",
      "end"
    ]
  },
  "el-result/size": {
    "type": "number",
    "description": "图标大小，类型为：number"
  },
  "el-scrollbar/native": {
    "type": "boolean",
    "description": "是否显示模拟滚动条，类型为：boolean"
  },
  "el-scrollbar/wrap-class": {
    "type": "string",
    "description": "外层盒子类名，类型为：string"
  },
  "el-scrollbar/wrap-style": {
    "type": "string",
    "description": "外层盒子样式，类型为：string"
  },
  "el-scrollbar/view-class": {
    "type": "string",
    "description": "内层盒子类名，类型为：string"
  },
  "el-scrollbar/view-style": {
    "type": "string",
    "description": "内层盒子样式，类型为：string"
  },
  "el-scrollbar/noresize": {
    "type": "boolean",
    "description": "是否自适应，类型为：boolean"
  },
  "el-scrollbar/always": {
    "type": "boolean",
    "description": "是否一直显示滚动条，类型为：boolean"
  },
  "el-scrollbar/tag": {
    "type": "string",
    "description": "生成的标签，类型为：string"
  },
  "el-scrollbar/min-size": {
    "type": "number",
    "description": "滚动条最小尺寸，类型为：number"
  },
  "el-scrollbar/scroll-behavior": {
    "type": "string",
    "description": "滚动行为，具体效果参考 [scroll-behavior](https://developer.mozilla.org/en-US/docs/Web/CSS/scroll-behavior)，类型为：string",
    "options": [
      "smooth",
      "auto"
    ]
  },
  "el-select/value": {
    "type": "boolean / string / number",
    "description": "绑定值，类型为：boolean / string / number"
  },
  "el-select/v-model": {
    "type": "boolean / string / number",
    "description": "绑定值，类型为：boolean / string / number"
  },
  "el-select/multiple": {
    "type": "boolean",
    "description": "是否多选，类型为：boolean"
  },
  "el-select/disabled": {
    "type": "boolean",
    "description": "是否禁用，类型为：boolean"
  },
  "el-select/value-key": {
    "type": "string",
    "description": "作为 `value` 唯一标识的键名，绑定值为对象类型时必填，类型为：string"
  },
  "el-select/size": {
    "type": "string",
    "description": "输入框尺寸，继承全局尺寸或者表单尺寸，类型为：string",
    "options": [
      "medium",
      "small",
      "mini"
    ]
  },
  "el-select/clearable": {
    "type": "boolean",
    "description": "是否可以清空选项，类型为：boolean"
  },
  "el-select/collapse-tags": {
    "type": "boolean",
    "description": "多选时是否将选中值按 `tag` 文字的形式展示，类型为：boolean"
  },
  "el-select/collapse-tags-max-num": {
    "type": "number",
    "description": "多选模式下设置多少后开始折叠，类型为：number"
  },
  "el-select/collapse-texts": {
    "type": "boolean",
    "description": "多选时是否将选中值按文字的形式展示，类型为：boolean"
  },
  "el-select/multiple-limit": {
    "type": "number",
    "description": "多选时用户最多可以选择的项目数，为 0 则不限制，类型为：number"
  },
  "el-select/name": {
    "type": "string",
    "description": "`Input` 的 `name` 属性，类型为：string"
  },
  "el-select/autocomplete": {
    "type": "string",
    "description": "`Input` 的 `autocomplete` 属性，类型为：string",
    "options": [
      "on",
      "off"
    ]
  },
  "el-select/placeholder": {
    "type": "string",
    "description": "占位符，类型为：string"
  },
  "el-select/placement": {
    "type": "string",
    "description": "下拉框出现的位置，类型为：string",
    "options": [
      "top",
      "top-start",
      "top-end",
      "bottom",
      "bottom-start",
      "bottom-end",
      "left",
      "left-start",
      "left-end",
      "right",
      "right-start",
      "right-end"
    ]
  },
  "el-select/filterable": {
    "type": "boolean",
    "description": "是否可搜索，类型为：boolean"
  },
  "el-select/allow-create": {
    "type": "boolean",
    "description": "是否允许用户创建新条目，需配合 `filterable` 使用，类型为：boolean"
  },
  "el-select/create-max-length": {
    "type": "number",
    "description": "创建新条目最大长度，类型为：number"
  },
  "el-select/filter-method": {
    "type": "function",
    "description": "自定义搜索方法，类型为：function"
  },
  "el-select/remote": {
    "type": "boolean",
    "description": "是否为远程搜索，类型为：boolean"
  },
  "el-select/remote-method": {
    "type": "function",
    "description": "远程搜索方法，类型为：function"
  },
  "el-select/loading": {
    "type": "boolean",
    "description": "是否正在从远程获取数据，类型为：boolean"
  },
  "el-select/loading-text": {
    "type": "string",
    "description": "远程加载时显示的文字，类型为：string"
  },
  "el-select/no-match-text": {
    "type": "string",
    "description": "搜索条件无匹配时显示的文字，也可以使用 `slot='empty'` 设置，类型为：string"
  },
  "el-select/no-data-text": {
    "type": "string",
    "description": "选项为空时显示的文字，也可以使用 `slot='empty'` 设置，类型为：string"
  },
  "el-select/popper-class": {
    "type": "string",
    "description": "Select 下拉框的类名，类型为：string"
  },
  "el-select/icon": {
    "type": "string",
    "description": "Select 下拉图标，类型为：string"
  },
  "el-select/reserve-keyword": {
    "type": "boolean",
    "description": "多选且可搜索时，是否在选中一个选项后保留当前的搜索关键词，类型为：boolean"
  },
  "el-select/default-first-option": {
    "type": "boolean",
    "description": "在输入框按下回车，选择第一个匹配项，需配合 `filterable` 或 `remote` 使用，类型为：boolean"
  },
  "el-select/popper-append-to-body": {
    "type": "boolean",
    "description": "是否将弹出框插入至 `body` 元素，在弹出框的定位出现问题时，可将该属性设置为 `false`，类型为：boolean"
  },
  "el-select/automatic-dropdown": {
    "type": "boolean",
    "description": "对于不可搜索的 `Select`，是否在输入框获得焦点后自动弹出选项菜单，类型为：boolean"
  },
  "el-select/option-max-width": {
    "type": "string / number",
    "description": "下拉框的最大宽度，默认不限制，类型为：string / number"
  },
  "el-select/popper-max-width": {
    "type": "string / number",
    "description": "折叠 `Popper` 的最大宽度，默认不限制，类型为：string / number"
  },
  "el-select/visible-arrow": {
    "type": "boolean",
    "description": "是否显示 `Tooltip` 箭头，类型为：boolean"
  },
  "el-select/overlay": {
    "type": "boolean",
    "description": "搜索框是否显示在下拉菜单中，虚拟下拉搜索强制开启，远程搜索不支持，类型为：boolean"
  },
  "el-select/tag-type": {
    "type": "string",
    "description": "标签类型，类型为：string",
    "options": [
      "success",
      "info",
      "warning",
      "danger"
    ]
  },
  "el-option/value": {
    "type": "string / number / object",
    "description": "选项的值，类型为：string / number / object"
  },
  "el-option/label": {
    "type": "string / number",
    "description": "选项的标签，若不设置则默认与 `value` 相同，类型为：string / number"
  },
  "el-option/disabled": {
    "type": "boolean",
    "description": "是否禁用该选项，类型为：boolean"
  },
  "el-option/closable": {
    "type": "boolean",
    "description": "在多选情况是否删除该选项，类型为：boolean"
  },
  "el-option-virtual/options": {
    "type": "array",
    "description": "下拉数据，类型为：array"
  },
  "el-option-virtual/props": {
    "type": "object",
    "description": "配置选项，具体参考 [option](https://ui.const.team/#/component/select#option-attributes) 属性，类型为：object"
  },
  "el-option-group/disabled": {
    "type": "boolean",
    "description": "是否将该分组下所有选项置为禁用，类型为：boolean"
  },
  "el-option-group/label": {
    "type": "string",
    "description": "分组的组名，类型为：string"
  },
  "el-skeleton/animated": {
    "type": "boolean",
    "description": "是否使用动画，类型为：boolean"
  },
  "el-skeleton/count": {
    "type": "number",
    "description": "渲染多少个 `template`, 建议使用尽可能小的数字，类型为：number"
  },
  "el-skeleton/loading": {
    "type": "boolean",
    "description": "是否显示 `skeleton` 骨架屏，类型为：boolean"
  },
  "el-skeleton/rows": {
    "type": "number",
    "description": "骨架屏段落数量，类型为：number"
  },
  "el-skeleton/throttle": {
    "type": "number",
    "description": "延迟占位 `DOM` 渲染的时间, 单位是毫秒，类型为：number"
  },
  "el-skeleton-item/variant": {
    "type": "string",
    "description": "当前显示的占位元素的样式，类型为：string",
    "options": [
      "p",
      "text",
      "h1",
      "h3",
      "text",
      "caption",
      "button",
      "image",
      "circle",
      "rect"
    ]
  },
  "el-slider/value": {
    "type": "number",
    "description": "绑定值，类型为：number"
  },
  "el-slider/v-model": {
    "type": "number",
    "description": "绑定值，类型为：number"
  },
  "el-slider/min": {
    "type": "number",
    "description": "最小值，类型为：number"
  },
  "el-slider/max": {
    "type": "number",
    "description": "最大值，类型为：number"
  },
  "el-slider/disabled": {
    "type": "boolean",
    "description": "是否禁用，类型为：boolean"
  },
  "el-slider/disabled-point": {
    "type": "array",
    "description": "禁用区间，类型为：array"
  },
  "el-slider/step": {
    "type": "number",
    "description": "步长，建议设置能够被 `max - min` 整除的值，否则会出现可选最大值小于 `max` 的情况，类型为：number"
  },
  "el-slider/show-input": {
    "type": "boolean",
    "description": "是否显示输入框，仅在非范围选择时有效，类型为：boolean"
  },
  "el-slider/show-input-controls": {
    "type": "boolean",
    "description": "在显示输入框的情况下，是否显示输入框的控制按钮，类型为：boolean"
  },
  "el-slider/size": {
    "type": "string",
    "description": "尺寸，继承全局尺寸或者表单尺寸，类型为：string",
    "options": [
      "medium",
      "small",
      "mini"
    ]
  },
  "el-slider/show-stops": {
    "type": "boolean",
    "description": "是否显示间断点，类型为：boolean"
  },
  "el-slider/show-tooltip": {
    "type": "boolean",
    "description": "是否显示 `tooltip`，类型为：boolean"
  },
  "el-slider/format-tooltip": {
    "type": "function",
    "description": "格式化 `tooltip` 内容，类型为：function"
  },
  "el-slider/placement": {
    "type": "string",
    "description": "下拉框出现的位置，类型为：string",
    "options": [
      "top",
      "top-start",
      "top-end",
      "bottom",
      "bottom-start",
      "bottom-end",
      "left",
      "left-start",
      "left-end",
      "right",
      "right-start",
      "right-end"
    ]
  },
  "el-slider/range": {
    "type": "boolean",
    "description": "是否为范围选择，类型为：boolean"
  },
  "el-slider/vertical": {
    "type": "boolean",
    "description": "是否竖向模式，类型为：boolean"
  },
  "el-slider/height": {
    "type": "string",
    "description": "`Slider` 高度，竖向模式时必填，类型为：string"
  },
  "el-slider/label": {
    "type": "string",
    "description": "屏幕阅读器标签，类型为：string"
  },
  "el-slider/debounce": {
    "type": "number",
    "description": "输入时的去抖延迟，单位为毫秒，仅在 `show-input` 等于 `true` 时有效，类型为：number"
  },
  "el-slider/tooltip-class": {
    "type": "string",
    "description": "`tooltip` 的自定义类名，类型为：string"
  },
  "el-slider/tooltip-effect": {
    "type": "string",
    "description": "`tooltip` 的主题，类型为：string",
    "options": [
      "dark",
      "light"
    ]
  },
  "el-slider/marks": {
    "type": "object",
    "description": "标记，`key` 的类型必须为 `Number` 且取值在闭区间 `[min, max]` 内，每个标记可以单独设置样式，类型为：object"
  },
  "el-slider/range-click": {
    "type": "boolean",
    "description": "仅在 `range` 下生效，点击滑块时，两个拖拽点直接定位到点击位置，类型为：boolean"
  },
  "el-slider/enable-transition": {
    "type": "boolean",
    "description": "是否使用过渡动画，类型为：boolean"
  },
  "el-slider/transition": {
    "type": "object",
    "description": "过渡动画，类型为：object"
  },
  "el-space/direction": {
    "type": "string",
    "description": "显示方向，类型为：string",
    "options": [
      "vertical",
      "horizontal"
    ]
  },
  "el-space/align": {
    "type": "string",
    "description": "对齐的方式，类型为：string",
    "options": [
      "start",
      "end",
      "center",
      "stretch"
    ]
  },
  "el-space/justify": {
    "type": "string",
    "description": "在 `direction` 对应方向上的分布方式，类型为：string",
    "options": [
      "start",
      "end",
      "center",
      "space-between"
    ]
  },
  "el-space/wrap": {
    "type": "boolean",
    "description": "是否换行，类型为：boolean"
  },
  "el-space/inline": {
    "type": "boolean",
    "description": "是否在行内渲染，类型为：boolean"
  },
  "el-space/size": {
    "type": "string / number",
    "description": "间距，类型为：string / number",
    "options": [
      "mini",
      "small",
      "medium",
      "default",
      "number"
    ]
  },
  "el-splitpanes/push-other-panes": {
    "type": "boolean",
    "description": "为真时，拖拽分割条碰撞到临近分割条时，会继续向临近分割条方向挤压下一个面板的空间，否则最多只是压缩自己部分的空间，类型为：boolean"
  },
  "el-splitpanes/horizontal": {
    "type": "boolean",
    "description": "为真时，默认为纵向排布的容器的分割面板，类型为：boolean"
  },
  "el-splitpanes/first-splitter": {
    "type": "boolean",
    "description": "为真时，第一个面板会前会被加上双击可导致最大化的分隔条，类型为：boolean"
  },
  "el-splitpanes/dblclick-splitter": {
    "type": "boolean",
    "description": "为真时，双击分割条会导致面板最大化，类型为：boolean"
  },
  "el-pane/size": {
    "type": "number",
    "description": "面板非固定数值、被伸缩方向相对于所处外容器的初始宽度（高度）百分比，类型为：number"
  },
  "el-pane/max-size": {
    "type": "number",
    "description": "面板非固定数值、被伸缩方向相对于所处外容器的最大宽度（高度）百分比，类型为：number"
  },
  "el-pane/min-size": {
    "type": "number",
    "description": "面板非固定数值、被伸缩方向相对于所处外容器的最小宽度（高度）百分比，类型为：number"
  },
  "el-steps/direction": {
    "type": "string",
    "description": "显示方向，类型为：string",
    "options": [
      "vertical",
      "horizontal"
    ]
  },
  "el-steps/active": {
    "type": "number",
    "description": "设置当前激活步骤，类型为：number"
  },
  "el-steps/process-status": {
    "type": "string",
    "description": "设置当前步骤的状态，类型为：string",
    "options": [
      "process",
      "finish",
      "error",
      "success"
    ]
  },
  "el-steps/finish-status": {
    "type": "string",
    "description": "设置结束步骤的状态，类型为：string",
    "options": [
      "process",
      "finish",
      "error",
      "success"
    ]
  },
  "el-steps/simple": {
    "type": "boolean",
    "description": "是否应用简洁风格，类型为：boolean"
  },
  "el-steps/average": {
    "type": "boolean",
    "description": "简洁风格下是否均分，类型为：boolean"
  },
  "el-step/title": {
    "type": "string",
    "description": "标题，类型为：string"
  },
  "el-step/description": {
    "type": "string",
    "description": "描述性文字，类型为：string"
  },
  "el-step/icon": {
    "type": "传入 `icon` 的 `class` 全名来自定义 `icon`，也支持 `slot` 方式写入",
    "description": "图标，类型为：传入 `icon` 的 `class` 全名来自定义 `icon`，也支持 `slot` 方式写入",
    "options": [
      "string"
    ]
  },
  "el-step/status": {
    "type": "string",
    "description": "设置当前步骤的状态，不设置则根据 `steps` 确定状态，类型为：string",
    "options": [
      "wait",
      "process",
      "finish",
      "error",
      "success"
    ]
  },
  "el-switch/value": {
    "type": "boolean / string / number",
    "description": "绑定值，类型为：boolean / string / number"
  },
  "el-switch/v-model": {
    "type": "boolean / string / number",
    "description": "绑定值，类型为：boolean / string / number"
  },
  "el-switch/disabled": {
    "type": "boolean",
    "description": "是否禁用，类型为：boolean"
  },
  "el-switch/loading": {
    "type": "boolean",
    "description": "是否显示加载中，类型为：boolean"
  },
  "el-switch/size": {
    "type": "string",
    "description": "`Switch` 的尺寸，继承全局尺寸，类型为：string",
    "options": [
      "medium",
      "small",
      "mini"
    ]
  },
  "el-switch/width": {
    "type": "string / number",
    "description": "`Switch` 的宽度，类型为：string / number"
  },
  "el-switch/active-icon-class": {
    "type": "string",
    "description": "`Switch` 打开时所显示图标的类名，设置此项会忽略 `active-text`，类型为：string"
  },
  "el-switch/inactive-icon-class": {
    "type": "string",
    "description": "`Switch` 关闭时所显示图标的类名，设置此项会忽略 `inactive-text`，类型为：string"
  },
  "el-switch/active-text": {
    "type": "string",
    "description": "`Switch` 打开时的文字描述，类型为：string"
  },
  "el-switch/inactive-text": {
    "type": "string",
    "description": "`Switch` 关闭时的文字描述，类型为：string"
  },
  "el-switch/active-value": {
    "type": "boolean / string / number",
    "description": "`Switch` 打开时的值，类型为：boolean / string / number"
  },
  "el-switch/inactive-value": {
    "type": "boolean / string / number",
    "description": "`Switch` 关闭时的值，类型为：boolean / string / number"
  },
  "el-switch/active-color": {
    "type": "string",
    "description": "`Switch` 打开时的背景色，类型为：string"
  },
  "el-switch/active-text-color": {
    "type": "string",
    "description": "`Switch` 打开时文字的颜色，类型为：string"
  },
  "el-switch/inactive-color": {
    "type": "string",
    "description": "`Switch` 关闭时的背景色，类型为：string"
  },
  "el-switch/inactive-text-color": {
    "type": "string",
    "description": "`Switch` 关闭时文字的颜色，类型为：string"
  },
  "el-switch/id": {
    "type": "string",
    "description": "`Input` 对应的 `id` 属性，类型为：string"
  },
  "el-switch/tabindex": {
    "type": "number / string",
    "description": "`Input` 的 `tabindex`，类型为：number / string"
  },
  "el-switch/name": {
    "type": "string",
    "description": "`Input` 对应的 `name` 属性，类型为：string"
  },
  "el-switch/before-change": {
    "type": "boolean / function",
    "description": "`Switch` 状态改变前的钩子，返回 `false` 或者返回 `Promise` 且被 `reject` 则停止切换，类型为：boolean / function"
  },
  "el-switch/validate-event": {
    "type": "boolean",
    "description": "改变 `Switch` 状态时是否触发表单的校验，类型为：boolean"
  },
  "el-table-virtual/data": {
    "type": "array",
    "description": "总数据，类型为：array"
  },
  "el-table-virtual/key-prop": {
    "type": "string",
    "description": "`key` 值，`data` 数据中的唯一 `id`，若 `keyProp` 未设置或 `keyProp` 值不唯一，可能导致表格空数据或者滚动时渲染的数据断层、不连贯、滚动不了，类型为：string"
  },
  "el-table-virtual/item-size": {
    "type": "number",
    "description": "每一行的预估高度，类型为：number"
  },
  "el-table-virtual/buffer": {
    "type": "number",
    "description": "顶部和底部缓冲区域，值越大显示表格的行数越多，类型为：number"
  },
  "el-table-virtual/throttle-time": {
    "type": "number",
    "description": "滚动事件的节流时间，类型为：number"
  },
  "el-table-virtual/dynamic": {
    "type": "boolean",
    "description": "动态获取表格行高度，默认开启，设置为 `false` 时，则以 `itemSize` 为表格行的真实高度，能大大减少虚拟滚动计算量，减少滚动白屏；如果 `itemSize` 与表格行的真实高度不一致，可能导致滚动时表格数据错乱、抖动、底部有空白，类型为：boolean"
  },
  "el-table-virtual/virtualized": {
    "type": "boolean",
    "description": "是否开启虚拟滚动，类型为：boolean"
  },
  "el-table-virtual/row-span-key": {
    "type": "function(row, index)",
    "description": "当使用了 `<el-table>` 的合并行，必须设置 `rowSpanKey` 函数并返回每组合并行中共用的 `key` 值，类型为：function(row, index)"
  },
  "el-table/data": {
    "type": "array",
    "description": "显示的数据，类型为：array"
  },
  "el-table/name": {
    "type": "string",
    "description": "自动化测试，表格单元格id，类型为：string"
  },
  "el-table/height": {
    "type": "string / number",
    "description": "`Table` 的高度，默认为自动高度，如果 `height` 为 `Number` 类型，单位 `px`；如果 `height` 为 `String` 类型，则这个高度会设置为 `Table` 的 `style.height` 的值，`Table` 的高度会受控于外部样式，类型为：string / number"
  },
  "el-table/max-height": {
    "type": "string / number",
    "description": "`Table` 的最大高度，合法的值为数字或者单位为 `px` 的高度，类型为：string / number"
  },
  "el-table/stripe": {
    "type": "boolean",
    "description": "是否为斑马纹，类型为：boolean"
  },
  "el-table/isdrag": {
    "type": "boolean",
    "description": "是否可拖拽列宽，类型为：boolean"
  },
  "el-table/border": {
    "type": "boolean",
    "description": "是否带有纵向边框，类型为：boolean"
  },
  "el-table/card": {
    "type": "boolean",
    "description": "是否为卡片表格，如果同时设置 `card` 和 `border` 属性，则以 `card` 属性为主，类型为：boolean"
  },
  "el-table/size": {
    "type": "string",
    "description": "`Table` 的尺寸，继承全局尺寸，类型为：string",
    "options": [
      "medium",
      "small",
      "mini"
    ]
  },
  "el-table/fit": {
    "type": "boolean",
    "description": "列的宽度是否自撑开，类型为：boolean"
  },
  "el-table/show-header": {
    "type": "boolean",
    "description": "是否显示表头，类型为：boolean"
  },
  "el-table/highlight-current-row": {
    "type": "boolean",
    "description": "是否要高亮当前行，类型为：boolean"
  },
  "el-table/highlight-selection-row": {
    "type": "boolean",
    "description": "是否要高亮复选框选中行（仅针对开启 `selection` 有效），类型为：boolean"
  },
  "el-table/current-row-key": {
    "type": "string / number",
    "description": "当前行的 `key`，只写属性，类型为：string / number"
  },
  "el-table/row-class-name": {
    "type": "function / string",
    "description": "行的 `className` 的回调方法，也可以使用字符串为所有行设置一个固定的 `className`，类型为：function / string"
  },
  "el-table/row-style": {
    "type": "function / object",
    "description": "行的 `Style` 的回调方法，也可以使用一个固定的 `Object` 为所有行设置一样的 `Style`，类型为：function / object"
  },
  "el-table/cell-class-name": {
    "type": "function / string",
    "description": "单元格的 `className` 的回调方法，也可以使用字符串为所有单元格设置一个固定的 `className`，类型为：function / string"
  },
  "el-table/cell-style": {
    "type": "function / object",
    "description": "单元格的 `Style` 的回调方法，也可以使用一个固定的 Object 为所有单元格设置一样的 `Style`，类型为：function / object"
  },
  "el-table/header-row-class-name": {
    "type": "function / string",
    "description": "表头行的 `className` 的回调方法，也可以使用字符串为所有表头行设置一个固定的 `className`，类型为：function / string"
  },
  "el-table/header-row-style": {
    "type": "function / object",
    "description": "表头行的 `Style` 的回调方法，也可以使用一个固定的 `Object` 为所有表头行设置一样的 `Style`，类型为：function / object"
  },
  "el-table/header-cell-class-name": {
    "type": "function / string",
    "description": "表头单元格的 `className` 的回调方法，也可以使用字符串为所有表头单元格设置一个固定的 `className`，类型为：function / string"
  },
  "el-table/header-cell-style": {
    "type": "function / object",
    "description": "表头单元格的 `Style` 的回调方法，也可以使用一个固定的 `Object` 为所有表头单元格设置一样的 `Style`，类型为：function / object"
  },
  "el-table/row-key": {
    "type": "function / string",
    "description": "行数据的 `Key`，用来优化 `Table` 的渲染；在使用 `reserve-selection` 功能与显示树形数据时，该属性是必填的，类型为 `String` 时，支持多层访问：`user.info.id`，但不支持 `user.info[0].id`，此种情况请使用 `Function`，类型为：function / string"
  },
  "el-table/empty-text": {
    "type": "string",
    "description": "空数据时显示的文本内容，也可以通过 `slot='empty'` 设置，类型为：string"
  },
  "el-table/default-expand-all": {
    "type": "boolean",
    "description": "是否默认展开所有行，当 `Table` 包含展开行存在或者为树形表格时有效，类型为：boolean"
  },
  "el-table/expand-row-keys": {
    "type": "array",
    "description": "可以通过该属性设置 `Table` 目前的展开行，需要设置 `row-key` 属性才能使用，该属性为展开行的 `keys` 数组，类型为：array"
  },
  "el-table/default-sort": {
    "type": "object",
    "description": "默认的排序列的 `prop` 和顺序，它的 `prop` 属性指定默认的排序的列，`order` 指定默认排序的顺序，类型为：object"
  },
  "el-table/filter-icon": {
    "type": "string",
    "description": "过滤图标的类名，类型为：string"
  },
  "el-table/tooltip-effect": {
    "type": "string",
    "description": "`effect` 属性，类型为：string",
    "options": [
      "dark",
      "light"
    ]
  },
  "el-table/show-summary": {
    "type": "boolean",
    "description": "是否在表尾显示合计行，类型为：boolean"
  },
  "el-table/summary-top": {
    "type": "boolean",
    "description": "是否在表头显示合计行，类型为：boolean"
  },
  "el-table/sum-text": {
    "type": "string",
    "description": "合计行第一列的文本，类型为：string"
  },
  "el-table/summary-method": {
    "type": "function",
    "description": "自定义的合计计算方法，类型为：function"
  },
  "el-table/span-method": {
    "type": "function",
    "description": "合并行或列的计算方法，类型为：function"
  },
  "el-table/merge-columns": {
    "type": "array",
    "description": "合并行的条件（优先级低于 `span-method`），每一项需要有 `key` （需要合并的列），`conditions`（合并列的条件），类型为：array"
  },
  "el-table/select-on-indeterminate": {
    "type": "boolean",
    "description": "在多选表格中，当仅有部分行被选中时，点击表头的多选框时的行为，若为 `true`，则选中所有行；若为 `false`，则取消选择所有行，类型为：boolean"
  },
  "el-table/indent": {
    "type": "number",
    "description": "展示树形数据时，树节点的缩进，类型为：number"
  },
  "el-table/lazy": {
    "type": "boolean",
    "description": "是否懒加载子节点数据，类型为：boolean"
  },
  "el-table/load": {
    "type": "function",
    "description": "加载子节点数据的函数，`lazy` 为 `true` 时生效，函数第二个参数包含了节点的层级信息，类型为：function"
  },
  "el-table/tree-props": {
    "type": "object",
    "description": "渲染嵌套数据的配置选项，类型为：object"
  },
  "el-table/tree-all-render": {
    "type": "boolean",
    "description": "是否渲染所有树节点，类型为：boolean"
  },
  "el-table/check-strictly": {
    "type": "boolean",
    "description": "在显示复选框的情况下，是否严格的遵循父子不互相关联的做法，默认为 `false`，类型为：boolean"
  },
  "el-table/hover-row": {
    "type": "boolean",
    "description": "是否开启行划过效果，类型为：boolean"
  },
  "el-table/hover-column": {
    "type": "boolean",
    "description": "是否开启列划过效果，类型为：boolean"
  },
  "el-table/always": {
    "type": "boolean",
    "description": "是否一直显示滚动条，类型为：boolean"
  },
  "el-table/transition": {
    "type": "boolean",
    "description": "划过是否有过渡效果，类型为：boolean"
  },
  "el-table/display-only-footer-append": {
    "type": "boolean",
    "description": "是否只展示 `footer-append` 内容，类型为：boolean"
  },
  "el-table-column/type": {
    "type": "string",
    "description": "对应列的类型，如果设置了 `selection` 则显示多选框；如果设置了 `index` 则显示该行的索引（从 1 开始计算）；如果设置了 `expand` 则显示为一个可展开的按钮，类型为：string",
    "options": [
      "selection",
      "index",
      "expand"
    ]
  },
  "el-table-column/index": {
    "type": "number / function",
    "description": "如果设置了 `type='index'`，可以通过传递 `index` 属性来自定义索引，类型为：number / function"
  },
  "el-table-column/column-key": {
    "type": "string",
    "description": "`column` 的 `key`，如果需要使用 `filter-change` 事件，则需要此属性标识是哪个 `column` 的筛选条件，类型为：string"
  },
  "el-table-column/label": {
    "type": "string",
    "description": "显示的标题，类型为：string"
  },
  "el-table-column/prop": {
    "type": "string",
    "description": "对应列内容的字段名，也可以使用 `property` 属性，类型为：string"
  },
  "el-table-column/width": {
    "type": "string",
    "description": "对应列的宽度，类型为：string"
  },
  "el-table-column/min-width": {
    "type": "string",
    "description": "对应列的最小宽度，与 `width` 的区别是 `width` 是固定的，`min-width` 会把剩余宽度按比例分配给设置了 `min-width` 的列，类型为：string"
  },
  "el-table-column/fixed": {
    "type": "string / boolean",
    "description": "列是否固定在左侧或者右侧，`true` 表示固定在左侧，类型为：string / boolean",
    "options": [
      "true",
      "left",
      "right"
    ]
  },
  "el-table-column/fixed-pro": {
    "type": "string / boolean",
    "description": "固定列采用粘性布局，用法与 `fixed` 相同，请勿与 `fixed` 同时使用，类型为：string / boolean",
    "options": [
      "true",
      "left",
      "right"
    ]
  },
  "el-table-column/render-header": {
    "type": "function",
    "description": "列标题 `Label` 区域渲染使用的 `Function`，类型为：function"
  },
  "el-table-column/sortable": {
    "type": "boolean / string",
    "description": "对应列是否可以排序，如果设置为 `custom`，则代表用户希望远程排序，需要监听 `Table` 的 `sort-change` 事件，类型为：boolean / string",
    "options": [
      "true",
      "false",
      "'custom'"
    ]
  },
  "el-table-column/sort-method": {
    "type": "function",
    "description": "对数据进行排序的时候使用的方法，仅当 `sortable` 设置为 `true` 的时候有效，需返回一个数字，和 `Array.sort` 表现一致，类型为：function"
  },
  "el-table-column/sort-by": {
    "type": "string / array / function",
    "description": "指定数据按照哪个属性进行排序，仅当 `sortable` 设置为 `true` 且没有设置 `sort-method` 的时候有效，如果 `sort-by` 为数组，则先按照第 1 个属性排序，如果第 1 个相等，再按照第 2 个排序，以此类推，类型为：string / array / function"
  },
  "el-table-column/sort-orders": {
    "type": "array",
    "description": "数据在排序时所使用排序策略的轮转顺序，仅当 `sortable` 为 `true` 时有效，需传入一个数组，随着用户点击表头，该列依次按照数组中元素的顺序进行排序，类型为：array",
    "options": [
      "ascending",
      "descending",
      "null"
    ]
  },
  "el-table-column/resizable": {
    "type": "boolean",
    "description": "对应列是否可以通过拖动改变宽度（需要在 `<el-table>` 上设置 `border` 或者 `isdrag` 属性为真），类型为：boolean"
  },
  "el-table-column/formatter": {
    "type": "function(row, column, cellValue, index)",
    "description": "用来格式化内容，类型为：function(row, column, cellValue, index)"
  },
  "el-table-column/show-overflow-tooltip": {
    "type": "boolean",
    "description": "当内容过长被隐藏时显示 `tooltip`，类型为：boolean"
  },
  "el-table-column/align": {
    "type": "string",
    "description": "对齐方式，类型为：string",
    "options": [
      "left",
      "center",
      "right"
    ]
  },
  "el-table-column/header-align": {
    "type": "string",
    "description": "表头对齐方式，若不设置该项，则使用表格的对齐方式，类型为：string",
    "options": [
      "left",
      "center",
      "right"
    ]
  },
  "el-table-column/class-name": {
    "type": "string",
    "description": "列的 `className`，类型为：string"
  },
  "el-table-column/label-class-name": {
    "type": "string",
    "description": "当前列标题的自定义类名，类型为：string"
  },
  "el-table-column/selectable": {
    "type": "function(row, index)",
    "description": "仅对 `type='selection'` 的列有效，类型为 `Function`，`Function` 的返回值用来决定这一行的 `CheckBox` 是否可以勾选，类型为：function(row, index)"
  },
  "el-table-column/reserve-selection": {
    "type": "boolean",
    "description": "仅对 `type='selection'` 的列有效，类型为 `Boolean`，为 `true` 则会在数据更新之后保留之前选中的数据（需指定 `row-key`），类型为：boolean"
  },
  "el-table-column/filters": {
    "type": "array",
    "description": "数据过滤的选项，数组格式，数组中的元素需要有 `text` 和 `value` 属性，类型为：array"
  },
  "el-table-column/filter-placement": {
    "type": "string",
    "description": "过滤弹出框的定位，类型为：string",
    "options": [
      "top",
      "top-start",
      "top-end",
      "bottom",
      "bottom-start",
      "bottom-end",
      "left",
      "left-start",
      "left-end",
      "right",
      "right-start",
      "right-end"
    ]
  },
  "el-table-column/filter-multiple": {
    "type": "boolean",
    "description": "数据过滤的选项是否多选，类型为：boolean"
  },
  "el-table-column/filter-method": {
    "type": "function",
    "description": "数据过滤使用的方法，如果是多选的筛选项，对每一条数据会执行多次，任意一次返回 `true` 就会显示，类型为：function"
  },
  "el-table-column/filtered-value": {
    "type": "array",
    "description": "选中的数据过滤项，如果需要自定义表头过滤的渲染方式，可能会需要此属性，类型为：array"
  },
  "el-table-column/filter-type": {
    "type": "string",
    "description": "指定筛选器类型，类型为：string",
    "options": [
      "checkbox",
      "input"
    ]
  },
  "el-table-column/filter-type-options": {
    "type": "object",
    "description": "假如筛选类型设置为 `input` 您可以为输入指定一些选项，例如 `placeholder`, `clearable` 和 `delay`，`filter-type='input'` 对于不立即调用的输入事件，可以指定 `delay` 默认为 `500ms`，类型为：object"
  },
  "el-tabs/value": {
    "type": "string / number",
    "description": "绑定值，选中选项卡的 `name`，类型为：string / number"
  },
  "el-tabs/v-model": {
    "type": "string / number",
    "description": "绑定值，选中选项卡的 `name`，类型为：string / number"
  },
  "el-tabs/type": {
    "type": "string",
    "description": "风格类型，类型为：string",
    "options": [
      "card",
      "border-card"
    ]
  },
  "el-tabs/size": {
    "type": "string",
    "description": "`Tabs` 的尺寸，继承全局尺寸，类型为：string",
    "options": [
      "medium",
      "small",
      "mini"
    ]
  },
  "el-tabs/closable": {
    "type": "boolean",
    "description": "标签是否可关闭，类型为：boolean"
  },
  "el-tabs/addable": {
    "type": "boolean",
    "description": "标签是否可增加，类型为：boolean"
  },
  "el-tabs/editable": {
    "type": "boolean",
    "description": "标签是否同时可增加和关闭，类型为：boolean"
  },
  "el-tabs/tab-position": {
    "type": "string",
    "description": "选项卡所在位置，类型为：string",
    "options": [
      "top",
      "right",
      "bottom",
      "left"
    ]
  },
  "el-tabs/stretch": {
    "type": "boolean",
    "description": "标签的宽度是否自撑开，类型为：boolean"
  },
  "el-tabs/before-leave": {
    "type": "function",
    "description": "切换标签之前的钩子，若返回 `false` 或者返回 `Promise` 且被 `reject`，则阻止切换，类型为：function"
  },
  "el-tabs/controllable": {
    "type": "boolean",
    "description": "标签是否可方向键切换，类型为：boolean"
  },
  "el-tab-pane/label": {
    "type": "string",
    "description": "选项卡标题，类型为：string"
  },
  "el-tab-pane/disabled": {
    "type": "boolean",
    "description": "是否禁用，类型为：boolean"
  },
  "el-tab-pane/name": {
    "type": "string / number",
    "description": "与选项卡绑定值 `value` 对应的标识符，表示选项卡别名，类型为：string / number"
  },
  "el-tab-pane/closable": {
    "type": "boolean",
    "description": "标签是否可关闭，类型为：boolean"
  },
  "el-tab-pane/lazy": {
    "type": "boolean",
    "description": "标签是否延迟渲染，类型为：boolean"
  },
  "el-tag/type": {
    "type": "string",
    "description": "类型，类型为：string",
    "options": [
      "success",
      "info",
      "warning",
      "danger"
    ]
  },
  "el-tag/closable": {
    "type": "boolean",
    "description": "是否可关闭，类型为：boolean"
  },
  "el-tag/disable-transitions": {
    "type": "boolean",
    "description": "是否禁用渐变动画，类型为：boolean"
  },
  "el-tag/hit": {
    "type": "boolean",
    "description": "是否有边框描边，类型为：boolean"
  },
  "el-tag/round": {
    "type": "boolean",
    "description": "是否圆形，类型为：boolean"
  },
  "el-tag/color": {
    "type": "string",
    "description": "文本色，类型为：string"
  },
  "el-tag/icon": {
    "type": "string",
    "description": "前缀图标，类型为：string"
  },
  "el-tag/bg-color": {
    "type": "string",
    "description": "背景色，类型为：string"
  },
  "el-tag/border-color": {
    "type": "string",
    "description": "边框色，类型为：string"
  },
  "el-tag/size": {
    "type": "string",
    "description": "尺寸，继承全局尺寸或者表单尺寸，类型为：string",
    "options": [
      "medium",
      "small",
      "mini"
    ]
  },
  "el-tag/effect": {
    "type": "string",
    "description": "主题，类型为：string",
    "options": [
      "dark",
      "light",
      "plain"
    ]
  },
  "el-text-ellipsis/text": {
    "type": "string",
    "description": "需要省略的文本，类型为：string"
  },
  "el-text-ellipsis/height": {
    "type": "number",
    "description": "限制的高度，类型为：number"
  },
  "el-text-ellipsis/is-limit": {
    "type": "boolean",
    "description": "是否开启限制，类型为：boolean"
  },
  "el-text-ellipsis/hide-tooltip": {
    "type": "boolean",
    "description": "是否使用 `Tooltip`，类型为：boolean"
  },
  "el-text-ellipsis/effect": {
    "type": "string",
    "description": "`Tooltip` 的风格，类型为：string",
    "options": [
      "dark",
      "light"
    ]
  },
  "el-text-ellipsis/placement": {
    "type": "string",
    "description": "`Tooltip` 的出现位置，类型为：string",
    "options": [
      "top",
      "top-start",
      "top-end",
      "bottom",
      "bottom-start",
      "bottom-end",
      "left",
      "left-start",
      "left-end",
      "right",
      "right-start",
      "right-end"
    ]
  },
  "el-text-ellipsis/tool-tip-width": {
    "type": "number",
    "description": "`Tooltip` 的最大宽度，类型为：number"
  },
  "el-text-ellipsis/more": {
    "type": "string",
    "description": "省略的形式，类型为：string"
  },
  "el-time-picker/value": {
    "type": "date / string",
    "description": "绑定值，类型为：date / string"
  },
  "el-time-picker/v-model": {
    "type": "date / string",
    "description": "绑定值，类型为：date / string"
  },
  "el-time-picker/readonly": {
    "type": "boolean",
    "description": "完全只读，类型为：boolean"
  },
  "el-time-picker/disabled": {
    "type": "boolean",
    "description": "禁用，类型为：boolean"
  },
  "el-time-picker/editable": {
    "type": "boolean",
    "description": "文本框可输入，类型为：boolean"
  },
  "el-time-picker/clearable": {
    "type": "boolean",
    "description": "是否显示清除按钮，类型为：boolean"
  },
  "el-time-picker/size": {
    "type": "string",
    "description": "输入框尺寸，继承全局尺寸或者表单尺寸，类型为：string",
    "options": [
      "medium",
      "small",
      "mini"
    ]
  },
  "el-time-picker/placeholder": {
    "type": "string",
    "description": "非范围选择时的占位内容，类型为：string"
  },
  "el-time-picker/start-placeholder": {
    "type": "string",
    "description": "范围选择时开始日期的占位内容，类型为：string"
  },
  "el-time-picker/end-placeholder": {
    "type": "string",
    "description": "范围选择时结束日期的占位内容，类型为：string"
  },
  "el-time-picker/is-range": {
    "type": "boolean",
    "description": "是否为时间范围选择，类型为：boolean"
  },
  "el-time-picker/arrow-control": {
    "type": "boolean",
    "description": "是否使用箭头进行时间选择，类型为：boolean"
  },
  "el-time-picker/placement": {
    "type": "string",
    "description": "下拉框出现的位置，类型为：string",
    "options": [
      "top",
      "top-start",
      "top-end",
      "bottom",
      "bottom-start",
      "bottom-end",
      "left",
      "left-start",
      "left-end",
      "right",
      "right-start",
      "right-end"
    ]
  },
  "el-time-picker/popper-class": {
    "type": "string",
    "description": "`TimePicker` 下拉框的类名，类型为：string"
  },
  "el-time-picker/picker-options": {
    "type": "object",
    "description": "当前时间日期选择器特有的选项参考[Picker Options](https://ui.const.team/#/component/time-picker#picker-options)，类型为：object"
  },
  "el-time-picker/range-separator": {
    "type": "string",
    "description": "选择范围时的分隔符，类型为：string"
  },
  "el-time-picker/value-format": {
    "type": "string",
    "description": "可选，仅 `TimePicker` 时可用，绑定值的格式，不指定则绑定值为 `Date` 对象，类型为：string",
    "options": [
      "见日期格式"
    ]
  },
  "el-time-picker/default-value": {
    "type": "date / string",
    "description": "可选，选择器打开时默认显示的时间，类型为：date / string"
  },
  "el-time-picker/name": {
    "type": "string",
    "description": "原生属性，类型为：string"
  },
  "el-time-picker/prefix-icon": {
    "type": "string",
    "description": "自定义头部图标的类名，类型为：string"
  },
  "el-time-picker/clear-icon": {
    "type": "string",
    "description": "自定义清空图标的类名，类型为：string"
  },
  "el-time-picker/append-to-body": {
    "type": "boolean",
    "description": "`DetePicker` 自身是否插入至 `body` 元素上，类型为：boolean"
  },
  "el-time-picker/visible-arrow": {
    "type": "boolean",
    "description": "是否显示 `Tooltip` 箭头，类型为：boolean"
  },
  "el-time-select/value": {
    "type": "date / string",
    "description": "绑定值，类型为：date / string"
  },
  "el-time-select/v-model": {
    "type": "date / string",
    "description": "绑定值，类型为：date / string"
  },
  "el-time-select/readonly": {
    "type": "boolean",
    "description": "完全只读，类型为：boolean"
  },
  "el-time-select/disabled": {
    "type": "boolean",
    "description": "禁用，类型为：boolean"
  },
  "el-time-select/editable": {
    "type": "boolean",
    "description": "文本框可输入，类型为：boolean"
  },
  "el-time-select/clearable": {
    "type": "boolean",
    "description": "是否显示清除按钮，类型为：boolean"
  },
  "el-time-select/size": {
    "type": "string",
    "description": "尺寸，继承全局尺寸或者表单尺寸，类型为：string",
    "options": [
      "medium",
      "small",
      "mini"
    ]
  },
  "el-time-select/placeholder": {
    "type": "string",
    "description": "非范围选择时的占位内容，类型为：string"
  },
  "el-time-select/start-placeholder": {
    "type": "string",
    "description": "范围选择时开始日期的占位内容，类型为：string"
  },
  "el-time-select/end-placeholder": {
    "type": "string",
    "description": "范围选择时结束日期的占位内容，类型为：string"
  },
  "el-time-select/placement": {
    "type": "string",
    "description": "下拉框出现的位置，类型为：string",
    "options": [
      "top",
      "top-start",
      "top-end",
      "bottom",
      "bottom-start",
      "bottom-end",
      "left",
      "left-start",
      "left-end",
      "right",
      "right-start",
      "right-end"
    ]
  },
  "el-time-select/popper-class": {
    "type": "string",
    "description": "`TimePicker` 下拉框的类名，类型为：string"
  },
  "el-time-select/picker-options": {
    "type": "object",
    "description": "当前时间日期选择器特有的选项参考[Picker Options](https://ui.const.team/#/component/time-select#picker-options)，类型为：object"
  },
  "el-time-select/range-separator": {
    "type": "string",
    "description": "选择范围时的分隔符，类型为：string"
  },
  "el-time-select/value-format": {
    "type": "string",
    "description": "可选，仅 `TimePicker` 时可用，绑定值的格式，不指定则绑定值为 `Date` 对象，类型为：string",
    "options": [
      "见日期格式"
    ]
  },
  "el-time-select/default-value": {
    "type": "date / string",
    "description": "可选，选择器打开时默认显示的时间，类型为：date / string"
  },
  "el-time-select/name": {
    "type": "string",
    "description": "原生属性，类型为：string"
  },
  "el-time-select/prefix-icon": {
    "type": "string",
    "description": "自定义头部图标的类名，类型为：string"
  },
  "el-time-select/clear-icon": {
    "type": "string",
    "description": "自定义清空图标的类名，类型为：string"
  },
  "el-time-select/append-to-body": {
    "type": "boolean",
    "description": "`DetePicker` 自身是否插入至 `body` 元素上，类型为：boolean"
  },
  "el-time-select/visible-arrow": {
    "type": "boolean",
    "description": "是否显示 `Tooltip` 箭头，类型为：boolean"
  },
  "el-timeline/reverse": {
    "type": "boolean",
    "description": "指定节点排序方向，默认为正序，类型为：boolean"
  },
  "el-timeline-item/timestamp": {
    "type": "string",
    "description": "时间戳，类型为：string"
  },
  "el-timeline-item/hide-timestamp": {
    "type": "boolean",
    "description": "是否隐藏时间戳，类型为：boolean"
  },
  "el-timeline-item/placement": {
    "type": "string",
    "description": "时间戳位置，类型为：string",
    "options": [
      "top",
      "bottom"
    ]
  },
  "el-timeline-item/type": {
    "type": "string",
    "description": "节点类型，类型为：string",
    "options": [
      "primary",
      "success",
      "warning",
      "danger",
      "info"
    ]
  },
  "el-timeline-item/color": {
    "type": "string",
    "description": "节点颜色，类型为：string",
    "options": [
      "hsl",
      "hsv",
      "hex",
      "rgb"
    ]
  },
  "el-timeline-item/size": {
    "type": "string",
    "description": "节点尺寸，类型为：string",
    "options": [
      "normal",
      "large"
    ]
  },
  "el-timeline-item/icon": {
    "type": "string",
    "description": "节点图标，类型为：string"
  },
  "el-tooltip/effect": {
    "type": "string",
    "description": "默认提供的主题，类型为：string",
    "options": [
      "dark",
      "light"
    ]
  },
  "el-tooltip/content": {
    "type": "string / number",
    "description": "显示的内容，也可以通过 `slot#content` 传入 `DOM`，类型为：string / number"
  },
  "el-tooltip/placement": {
    "type": "string",
    "description": "`Tooltip` 的出现位置，类型为：string",
    "options": [
      "top",
      "top-start",
      "top-end",
      "bottom",
      "bottom-start",
      "bottom-end",
      "left",
      "left-start",
      "left-end",
      "right",
      "right-start",
      "right-end"
    ]
  },
  "el-tooltip/value": {
    "type": "boolean",
    "description": "状态是否可见，类型为：boolean"
  },
  "el-tooltip/v-model": {
    "type": "boolean",
    "description": "状态是否可见，类型为：boolean"
  },
  "el-tooltip/disabled": {
    "type": "boolean",
    "description": "`Tooltip` 是否可用，类型为：boolean"
  },
  "el-tooltip/offset": {
    "type": "number",
    "description": "出现位置的偏移量，类型为：number"
  },
  "el-tooltip/max-width": {
    "type": "string / number",
    "description": "最大宽度，类型为：string / number"
  },
  "el-tooltip/transition": {
    "type": "string",
    "description": "定义渐变动画，类型为：string"
  },
  "el-tooltip/visible-arrow": {
    "type": "boolean",
    "description": "是否显示 `Tooltip` 箭头，更多参数可见[Vue-popper](https://github.com/element-component/vue-popper)，类型为：boolean"
  },
  "el-tooltip/popper-options": {
    "type": "object",
    "description": "[popper.js](https://popper.js.org/docs/v2/) 的参数，类型为：object"
  },
  "el-tooltip/open-delay": {
    "type": "number",
    "description": "延迟出现，单位毫秒，类型为：number"
  },
  "el-tooltip/close-delay": {
    "type": "number",
    "description": "延迟隐藏，单位毫秒，类型为：number"
  },
  "el-tooltip/manual": {
    "type": "boolean",
    "description": "手动控制模式，设置为 `true` 后，`mouseenter` 和 `mouseleave` 事件将不会生效，类型为：boolean"
  },
  "el-tooltip/popper-class": {
    "type": "string",
    "description": "为 `Tooltip` 的 `popper` 添加类名，类型为：string"
  },
  "el-tooltip/enterable": {
    "type": "boolean",
    "description": "鼠标是否可进入到 `Tooltip` 中，类型为：boolean"
  },
  "el-tooltip/hide-after": {
    "type": "number",
    "description": "`Tooltip` 出现后自动隐藏延时，单位毫秒，为 0 则不会自动隐藏，类型为：number"
  },
  "el-tooltip/tabindex": {
    "type": "number / string",
    "description": "`Tooltip` 组件的 `tabindex`，类型为：number / string"
  },
  "el-transfer/value": {
    "type": "array",
    "description": "绑定值，类型为：array"
  },
  "el-transfer/v-model": {
    "type": "array",
    "description": "绑定值，类型为：array"
  },
  "el-transfer/data": {
    "type": "array[{ key, label, disabled }]",
    "description": "`Transfer` 的数据源，类型为：array[{ key, label, disabled }]"
  },
  "el-transfer/size": {
    "type": "string",
    "description": "`Transfer` 的尺寸，继承全局尺寸，类型为：string",
    "options": [
      "medium",
      "small",
      "mini"
    ]
  },
  "el-transfer/filterable": {
    "type": "boolean",
    "description": "是否可搜索，类型为：boolean"
  },
  "el-transfer/filter-placeholder": {
    "type": "string",
    "description": "搜索框占位符，类型为：string"
  },
  "el-transfer/filter-method": {
    "type": "function",
    "description": "自定义搜索方法，类型为：function"
  },
  "el-transfer/target-order": {
    "type": "string",
    "description": "右侧列表元素的排序策略：若为 `original`，则保持与数据源相同的顺序；若为 `push`，则新加入的元素排在最后；若为 `unshift`，则新加入的元素排在最前，类型为：string",
    "options": [
      "original",
      "push",
      "unshift"
    ]
  },
  "el-transfer/titles": {
    "type": "array",
    "description": "自定义列表标题，类型为：array"
  },
  "el-transfer/width": {
    "type": "array",
    "description": "自定义面板宽度，类型为：array"
  },
  "el-transfer/button-texts": {
    "type": "array",
    "description": "自定义按钮文案，类型为：array"
  },
  "el-transfer/render-content": {
    "type": "function",
    "description": "自定义数据项渲染函数，类型为：function"
  },
  "el-transfer/format": {
    "type": "object",
    "description": "列表顶部勾选状态文案，类型为：object"
  },
  "el-transfer/props": {
    "type": "object",
    "description": "数据源的字段别名，类型为：object"
  },
  "el-transfer/left-default-checked": {
    "type": "array",
    "description": "初始状态下左侧列表的已勾选项的 `key` 数组，类型为：array"
  },
  "el-transfer/right-default-checked": {
    "type": "array",
    "description": "初始状态下右侧列表的已勾选项的 `key` 数组，类型为：array"
  },
  "el-transfer/lazy": {
    "type": "number",
    "description": "每次懒加载的数量, 值为 0 时关闭懒加载，类型为：number"
  },
  "el-transfer/virtual": {
    "type": "boolean",
    "description": "是否开启虚拟滚动，类型为：boolean"
  },
  "el-tree-select/value": {
    "type": "number / string / array",
    "description": "绑定值，类型为：number / string / array"
  },
  "el-tree-select/v-model": {
    "type": "number / string / array",
    "description": "绑定值，类型为：number / string / array"
  },
  "el-tree-select/name": {
    "type": "string",
    "description": "`Input` 的 `name` 属性，类型为：string"
  },
  "el-tree-select/node-key": {
    "type": "string",
    "description": "每个树节点用来作为唯一标识的属性，整棵树应该是唯一的，类型为：string"
  },
  "el-tree-select/data": {
    "type": "array",
    "description": "展示数据，类型为：array"
  },
  "el-tree-select/disabled": {
    "type": "boolean",
    "description": "是否禁用，类型为：boolean"
  },
  "el-tree-select/multiple": {
    "type": "boolean",
    "description": "是否多选，类型为：boolean"
  },
  "el-tree-select/collapse-tags": {
    "type": "boolean",
    "description": "多选时是否将选中值按 `tag` 文字的形式展示，类型为：boolean"
  },
  "el-tree-select/collapse-tags-max-num": {
    "type": "number",
    "description": "多选模式下设置多少后开始折叠，类型为：number"
  },
  "el-tree-select/option-max-width": {
    "type": "string / number",
    "description": "下拉面板最大宽度，类型为：string / number"
  },
  "el-tree-select/popper-max-width": {
    "type": "string / number",
    "description": "折叠面板最大宽度，仅在 `collapse-tags` 下有效，类型为：string / number"
  },
  "el-tree-select/clearable": {
    "type": "boolean",
    "description": "单选时是否可以清空选项，类型为：boolean"
  },
  "el-tree-select/filterable": {
    "type": "boolean",
    "description": "是否可搜索，类型为：boolean"
  },
  "el-tree-select/filter-method": {
    "type": "function",
    "description": "自定义搜索方法，类型为：function"
  },
  "el-tree-select/placeholder": {
    "type": "string",
    "description": "占位符，类型为：string"
  },
  "el-tree-select/emptyText": {
    "type": "string",
    "description": "空数据提示，如果设置了 `empty` 插槽，此项将不生效，类型为：string"
  },
  "el-tree-select/size": {
    "type": "string",
    "description": "下拉树尺寸，继承全局尺寸或者表单尺寸，类型为：string",
    "options": [
      "medium",
      "small",
      "mini"
    ]
  },
  "el-tree-select/show-checkbox": {
    "type": "boolean",
    "description": "是否显示 `checkbox`，当该值为 `true` 时，`TreeSelect` 自动支持多选，类型为：boolean"
  },
  "el-tree-select/show-checked-strategy": {
    "type": "string",
    "description": "定义选中项回填的方式，默认情况下只显示子节点，设置为 `parent` 时只显示父节点(当父节点下所有子节点都选中时)，类型为：string",
    "options": [
      "parent",
      "child"
    ]
  },
  "el-tree-select/props": {
    "type": "object",
    "description": "配置选项，具体看下表，类型为：object"
  },
  "el-tree-select/check-strictly": {
    "type": "boolean",
    "description": "在显示复选框的情况下，是否严格的遵循父子不互相关联的做法，默认为 `false`，如果设置此选项 `show-checked-strategy` 设置会失效，类型为：boolean"
  },
  "el-tree-select/default-expand-all": {
    "type": "boolean",
    "description": "是否默认展开所有节点，类型为：boolean"
  },
  "el-tree-select/expand-on-click-node": {
    "type": "boolean",
    "description": "是否在点击节点的时候展开或者收缩节点，默认值为 `true`，如果为 `false`，则只有点箭头图标的时候才会展开或者收缩节点，类型为：boolean"
  },
  "el-tree-select/visible-arrow": {
    "type": "boolean",
    "description": "是否显示 `Tooltip` 箭头，类型为：boolean"
  },
  "el-tree-select/popper-append-to-body": {
    "type": "boolean",
    "description": "是否将弹出框插入至 `body` 元素，在弹出框的定位出现问题时，可将该属性设置为 `false`，类型为：boolean"
  },
  "el-tree-select/overlay": {
    "type": "boolean",
    "description": "搜索框是否显示在下拉菜单中，类型为：boolean"
  },
  "el-tree-select/virtual": {
    "type": "boolean",
    "description": "是否开启虚拟滚动，类型为：boolean"
  },
  "el-tree-select/show-all-levels": {
    "type": "boolean",
    "description": "是否显示选中值的完整路径，类型为：boolean"
  },
  "el-tree-select/separator": {
    "type": "string",
    "description": "配置完整路径选项分隔符，类型为：string"
  },
  "el-tree-select/tag-type": {
    "type": "string",
    "description": "标签类型，类型为：string",
    "options": [
      "success",
      "info",
      "warning",
      "danger"
    ]
  },
  "el-tree-select/placement": {
    "type": "string",
    "description": "下拉框出现的位置，类型为：string",
    "options": [
      "top",
      "top-start",
      "top-end",
      "bottom",
      "bottom-start",
      "bottom-end",
      "left",
      "left-start",
      "left-end",
      "right",
      "right-start",
      "right-end"
    ]
  },
  "el-tree/data": {
    "type": "array",
    "description": "展示数据，类型为：array"
  },
  "el-tree/empty-text": {
    "type": "string",
    "description": "内容为空的时候展示的文本，类型为：string"
  },
  "el-tree/node-key": {
    "type": "string",
    "description": "每个树节点用来作为唯一标识的属性，整棵树应该是唯一的，类型为：string"
  },
  "el-tree/props": {
    "type": "object",
    "description": "配置选项，具体看[Props配置](https://ui.const.team/#/component/tree#props)，类型为：object"
  },
  "el-tree/render-after-expand": {
    "type": "boolean",
    "description": "是否在第一次展开某个树节点后才渲染其子节点，类型为：boolean"
  },
  "el-tree/load": {
    "type": "function",
    "description": "加载子树数据的方法，仅当 `lazy` 属性为 `true` 时生效，类型为：function"
  },
  "el-tree/render-content": {
    "type": "function",
    "description": "树节点的内容区的渲染 `Function`，类型为：function"
  },
  "el-tree/tree-node-class": {
    "type": "function",
    "description": "树节点自定义类名 `Function`，类型为：function"
  },
  "el-tree/highlight-current": {
    "type": "boolean",
    "description": "是否高亮当前选中节点，类型为：boolean"
  },
  "el-tree/size": {
    "type": "string",
    "description": "`Tree` 的尺寸，继承全局尺寸，类型为：string",
    "options": [
      "medium",
      "small",
      "mini"
    ]
  },
  "el-tree/ellipsis": {
    "type": "boolean",
    "description": "是否自动截断，类型为：boolean"
  },
  "el-tree/default-expand-all": {
    "type": "boolean",
    "description": "是否默认展开所有节点，类型为：boolean"
  },
  "el-tree/expand-on-click-node": {
    "type": "boolean",
    "description": "是否在点击节点的时候展开或者收缩节点，默认值为 `true`，如果为 `false`，则只有点箭头图标的时候才会展开或者收缩节点，类型为：boolean"
  },
  "el-tree/check-on-click-node": {
    "type": "boolean",
    "description": "是否在点击节点的时候选中节点，默认值为 `false`，即只有在点击复选框时才会选中节点，类型为：boolean"
  },
  "el-tree/auto-expand-parent": {
    "type": "boolean",
    "description": "展开子节点的时候是否自动展开父节点，类型为：boolean"
  },
  "el-tree/default-expanded-keys": {
    "type": "array",
    "description": "默认展开的节点的 `key` 的数组，类型为：array"
  },
  "el-tree/show-checkbox": {
    "type": "boolean",
    "description": "节点是否可被选择，类型为：boolean"
  },
  "el-tree/check-strictly": {
    "type": "boolean",
    "description": "在显示复选框的情况下，是否严格的遵循父子不互相关联的做法，默认为 `false`，类型为：boolean"
  },
  "el-tree/default-checked-keys": {
    "type": "array",
    "description": "默认勾选的节点的 `key` 的数组，类型为：array"
  },
  "el-tree/current-node-key": {
    "type": "string / number",
    "description": "当前选中的节点，类型为：string / number"
  },
  "el-tree/filter-node-method": {
    "type": "function",
    "description": "对树节点进行筛选时执行的方法，返回 `true` 表示这个节点可以显示，返回 `false` 则表示这个节点会被隐藏，类型为：function"
  },
  "el-tree/accordion": {
    "type": "boolean",
    "description": "是否每次只打开一个同级树节点展开，类型为：boolean"
  },
  "el-tree/indent": {
    "type": "number",
    "description": "相邻级节点间的水平缩进，单位为像素，类型为：number"
  },
  "el-tree/icon-class": {
    "type": "string",
    "description": "自定义树节点的收起图标，类型为：string"
  },
  "el-tree/expand-icon-class": {
    "type": "string",
    "description": "自定义树节点的展开图标，类型为：string"
  },
  "el-tree/lazy": {
    "type": "boolean",
    "description": "是否懒加载子节点，需与 `load` 方法结合使用，类型为：boolean"
  },
  "el-tree/show-line": {
    "type": "boolean",
    "description": "是否展示辅助线，开启后缩进设置无效，类型为：boolean"
  },
  "el-tree/draggable": {
    "type": "boolean",
    "description": "是否开启拖拽节点功能，类型为：boolean"
  },
  "el-tree/allow-drag": {
    "type": "function",
    "description": "判断节点能否被拖拽，类型为：function"
  },
  "el-tree/allow-drop": {
    "type": "function",
    "description": "拖拽时判定目标节点能否被放置，`type` 参数有三种情况：`prev` / `inner` / `next`，分别表示放置在目标节点前、插入至目标节点和放置在目标节点后，类型为：function"
  },
  "el-tree/filter-check-strictly": {
    "type": "boolean",
    "description": "在显示复选框且处于筛选状态下，选择父级是否只勾选筛选结果的子级，类型为：boolean"
  },
  "el-tree/height": {
    "type": "number",
    "description": "设置虚拟滚动容器高度，设置后自动启动虚拟容器，类型为：number"
  },
  "el-tree/extra-line": {
    "type": "number",
    "description": "容器外数据数目，需与 `height` 方法结合使用，类型为：number"
  },
  "el-upload/action": {
    "type": "string",
    "description": "必选参数，上传的地址，类型为：string"
  },
  "el-upload/headers": {
    "type": "object",
    "description": "设置上传的请求头部，类型为：object"
  },
  "el-upload/multiple": {
    "type": "boolean",
    "description": "是否支持多选文件，类型为：boolean"
  },
  "el-upload/data": {
    "type": "object",
    "description": "上传时附带的额外参数，类型为：object"
  },
  "el-upload/name": {
    "type": "string",
    "description": "上传的文件字段名，类型为：string"
  },
  "el-upload/with-credentials": {
    "type": "boolean",
    "description": "支持发送 `cookie` 凭证信息，类型为：boolean"
  },
  "el-upload/show-file-list": {
    "type": "boolean",
    "description": "是否显示已上传文件列表，类型为：boolean"
  },
  "el-upload/drag": {
    "type": "boolean",
    "description": "是否启用拖拽上传，类型为：boolean"
  },
  "el-upload/size": {
    "type": "string",
    "description": "上传组件尺寸，仅在配置 `drag='true'` 时生效，继承全局尺寸或者表单尺寸，类型为：string",
    "options": [
      "medium",
      "small",
      "mini"
    ]
  },
  "el-upload/accept": {
    "type": "string",
    "description": "接受上传的文件类型（`thumbnail-mode` 模式下此参数无效），类型为：string"
  },
  "el-upload/on-preview": {
    "type": "function",
    "description": "点击文件列表中已上传的文件时的钩子，类型为：function"
  },
  "el-upload/on-remove": {
    "type": "function",
    "description": "文件列表移除文件时的钩子，类型为：function"
  },
  "el-upload/on-success": {
    "type": "function",
    "description": "文件上传成功时的钩子，类型为：function"
  },
  "el-upload/on-error": {
    "type": "function",
    "description": "文件上传失败时的钩子，类型为：function"
  },
  "el-upload/on-progress": {
    "type": "function",
    "description": "文件上传时的钩子，类型为：function"
  },
  "el-upload/on-change": {
    "type": "function",
    "description": "文件状态改变时的钩子，添加文件、上传成功和上传失败时都会被调用，类型为：function"
  },
  "el-upload/before-upload": {
    "type": "function",
    "description": "上传文件之前的钩子，参数为上传的文件，若返回 `false` 或者返回 `Promise` 且被 `reject`，则停止上传，类型为：function"
  },
  "el-upload/before-remove": {
    "type": "function",
    "description": "删除文件之前的钩子，参数为上传的文件和文件列表，若返回 `false` 或者返回 `Promise` 且被 `reject`，则停止删除，类型为：function"
  },
  "el-upload/list-type": {
    "type": "string",
    "description": "文件列表的类型，类型为：string",
    "options": [
      "text",
      "picture",
      "picture-card"
    ]
  },
  "el-upload/auto-upload": {
    "type": "boolean",
    "description": "是否在选取文件后立即进行上传，类型为：boolean"
  },
  "el-upload/file-list": {
    "type": "array",
    "description": "上传的文件列表, 例如: `[{name: 'food.jpg', url: 'https://xxx.cdn.com/xxx.jpg'}]`，类型为：array"
  },
  "el-upload/http-request": {
    "type": "function",
    "description": "覆盖默认的上传行为，可以自定义上传的实现，类型为：function"
  },
  "el-upload/disabled": {
    "type": "boolean",
    "description": "是否禁用，类型为：boolean"
  },
  "el-upload/limit": {
    "type": "number",
    "description": "最大允许上传个数，类型为：number"
  },
  "el-upload/on-exceed": {
    "type": "function",
    "description": "文件超出个数限制时的钩子，类型为：function"
  },
  "el-upload/on-drag-invalid-accept": {
    "type": "function",
    "description": "以拖拽方式放入的文件，格式不符合 `accept` 规则时的钩子，类型为：function"
  }
}