{
  "var-action-sheet/show.sync": {
    "type": "boolean",
    "description": "是否显示动作面板 默认值：false"
  },
  "var-action-sheet/actions": {
    "type": "Actions",
    "description": "选项列表 默认值：[]"
  },
  "var-action-sheet/title": {
    "type": "string",
    "description": "动作面板标题 默认值：请选择"
  },
  "var-action-sheet/overlay": {
    "type": "boolean",
    "description": "是否显示遮罩层 默认值：true"
  },
  "var-action-sheet/overlay-class": {
    "type": "string",
    "description": "自定义遮罩层的 class 默认值：-"
  },
  "var-action-sheet/overlay-style": {
    "type": "object",
    "description": "自定义遮罩层的 style 默认值：-"
  },
  "var-action-sheet/lock-scroll": {
    "type": "boolean",
    "description": "是否禁止滚动穿透，禁止时滚动弹出层不会引发 body 的滚动 默认值：true"
  },
  "var-action-sheet/close-on-click-action": {
    "type": "boolean",
    "description": "是否点击选项时关闭动作面板 默认值：true"
  },
  "var-action-sheet/close-on-click-overlay": {
    "type": "boolean",
    "description": "是否点击遮罩层关闭动作面板 默认值：true"
  },
  "var-action-sheet/teleport": {
    "type": "TeleportProps['to']",
    "description": "动作面板挂载的位置 默认值：-"
  },
  "var-app-bar/color": {
    "type": "string",
    "description": "背景颜色 默认值：-"
  },
  "var-app-bar/text-color": {
    "type": "string",
    "description": "文字颜色 默认值：-"
  },
  "var-app-bar/title": {
    "type": "string",
    "description": "标题 默认值：-"
  },
  "var-app-bar/title-position": {
    "type": "string",
    "description": "标题位置，可选值为 `left` `center` `right` 默认值：left"
  },
  "var-app-bar/elevation": {
    "type": "boolean",
    "description": "是否给导航栏设置海拔 默认值：true"
  },
  "var-back-top/target": {
    "type": "string | HTMLElement",
    "description": "触发滚动的对象，如果为 undefined 会监听距离最近的一个可滚动的祖先节点 默认值：-"
  },
  "var-back-top/visibility-height": {
    "type": "string | number",
    "description": "滚动高度达到此参数值才出现 默认值：200"
  },
  "var-back-top/bottom": {
    "type": "string | number",
    "description": "`BackTop` 距离页面底部的高度 默认值：40"
  },
  "var-back-top/right": {
    "type": "string | number",
    "description": "`BackTop` 距离页面右侧的宽度 默认值：40"
  },
  "var-back-top/duration": {
    "type": "number",
    "description": "回到顶部所需时间（ms） 默认值：300"
  },
  "var-badge/type": {
    "type": "string",
    "description": "类型，可选值为 `default` `primary` `info` `success` `warning` `danger` 默认值：default"
  },
  "var-badge/dot": {
    "type": "boolean",
    "description": "徽标是否为小圆点 默认值：false"
  },
  "var-badge/value": {
    "type": "string | number",
    "description": "徽标中显示的值（当 `dot` 为 `false` 时生效） 默认值：0"
  },
  "var-badge/max-value": {
    "type": "number",
    "description": "徽标中显示的最大值，当 `value` 大于 `max-value` 时会显示 `max-value+` (当 `value` 与 `max-value` 都存在时生效) 默认值：-"
  },
  "var-badge/position": {
    "type": "string",
    "description": "徽标标签中有其他标签时定义徽标在其他标签上的位置，可选值 `right-top` `top-bottom` `left-top` `left-bottom` 默认值：right-top"
  },
  "var-badge/color": {
    "type": "string",
    "description": "自定义徽标颜色 默认值：-"
  },
  "var-badge/icon": {
    "type": "string",
    "description": "自定义徽标中图标的内容（优先级高于 `value`） 默认值：-"
  },
  "var-bottom-navigation/active.sync": {
    "type": "number | string",
    "description": "选中标签的名称或者索引值 默认值：0"
  },
  "var-bottom-navigation/fixed": {
    "type": "boolean",
    "description": "是否固定在底部 默认值：false"
  },
  "var-bottom-navigation/border": {
    "type": "boolean",
    "description": "是否显示外边框 默认值：false"
  },
  "var-bottom-navigation/z-index": {
    "type": "number | string",
    "description": "元素 z-index 默认值：1"
  },
  "var-bottom-navigation/active-color": {
    "type": "string",
    "description": "选中标签的颜色 默认值：-"
  },
  "var-bottom-navigation/inactive-color": {
    "type": "string",
    "description": "未选中标签的颜色 默认值：-"
  },
  "var-bottom-navigation/fab-props": {
    "type": "ButtonProps",
    "description": "悬浮按钮属性 默认值：{type: \"primary\"}"
  },
  "var-bottom-navigation-item/name": {
    "type": "string",
    "description": "标签名称，作为匹配的标识符 默认值：-"
  },
  "var-bottom-navigation-item/icon": {
    "type": "string",
    "description": "图标名称，等同于 Icon 组件的 [name 属性](/#/zh-CN/icon) 默认值：-"
  },
  "var-bottom-navigation-item/label": {
    "type": "string",
    "description": "标签文字内容 默认值：-"
  },
  "var-bottom-navigation-item/namespace": {
    "type": "string",
    "description": "图标的命名空间, 可扩展自定义图标库，等同于 Icon 组件的 [namespace 属性](/#/zh-CN/icon) 默认值：var-icon"
  },
  "var-bottom-navigation-item/badge": {
    "type": "boolean | BadgeProps",
    "description": "图标右上角徽标 默认值：false"
  },
  "var-button/type": {
    "type": "string",
    "description": "类型，可选值为 `default` `primary` `info` `success` `warning` `danger` 默认值：default"
  },
  "var-button/size": {
    "type": "string",
    "description": "尺寸，可选值为 `normal` `mini` `small` `large` 默认值：normal"
  },
  "var-button/loading": {
    "type": "boolean",
    "description": "加载状态 默认值：false"
  },
  "var-button/loading-radius": {
    "type": "string | number",
    "description": "loading 的半径，只作用于 `loading-type=\"circle\"` 时 默认值：12"
  },
  "var-button/loading-type": {
    "type": "string",
    "description": "loading 的类型，可选值为 `circle` `wave` `cube` `rect` `disappear` 默认值：circle"
  },
  "var-button/loading-size": {
    "type": "string",
    "description": "loading 的尺寸，可选值为 `large` `normal` `small` `mini` 不作用于 `loading-type=\"circle\"` 时 默认值：normal"
  },
  "var-button/auto-loading": {
    "type": "boolean",
    "description": "自动 loading 模式，方便处理异步任务 默认值：false"
  },
  "var-button/round": {
    "type": "boolean",
    "description": "是否是圆形按钮 默认值：false"
  },
  "var-button/block": {
    "type": "boolean",
    "description": "是否是块级元素 默认值：false"
  },
  "var-button/text": {
    "type": "boolean",
    "description": "是否是文字按钮 默认值：false"
  },
  "var-button/outline": {
    "type": "boolean",
    "description": "是否使用外边框 默认值：false"
  },
  "var-button/disabled": {
    "type": "boolean",
    "description": "禁用状态 默认值：false"
  },
  "var-button/ripple": {
    "type": "boolean",
    "description": "是否使用水波纹 默认值：true"
  },
  "var-button/text-color": {
    "type": "string",
    "description": "文字颜色 默认值：-"
  },
  "var-button/color": {
    "type": "string",
    "description": "背景颜色 默认值：-"
  },
  "var-card/title": {
    "type": "string",
    "description": "卡片标题 默认值：-"
  },
  "var-card/subtitle": {
    "type": "string",
    "description": "卡片副标题 默认值：-"
  },
  "var-card/description": {
    "type": "string",
    "description": "卡片描述 默认值：-"
  },
  "var-card/elevation": {
    "type": "string | number",
    "description": "卡片阴影程度等级 默认值：2"
  },
  "var-card/src": {
    "type": "string",
    "description": "图片地址 默认值：-"
  },
  "var-card/fit": {
    "type": "string",
    "description": "填充模式，可选值为 `fill` `contain` `cover` `none` `scale-down` 默认值：cover"
  },
  "var-card/alt": {
    "type": "string",
    "description": "替代文本 默认值：-"
  },
  "var-card/height": {
    "type": "string | number",
    "description": "图片高度 默认值：-"
  },
  "var-card/ripple": {
    "type": "boolean",
    "description": "是否开启水波 默认值：false"
  },
  "var-cell/title": {
    "type": "string | number",
    "description": "单元格标题 默认值：-"
  },
  "var-cell/icon": {
    "type": "string",
    "description": "左侧图标名称 默认值：-"
  },
  "var-cell/desc": {
    "type": "string",
    "description": "单元格描述 默认值：-"
  },
  "var-cell/border": {
    "type": "boolean",
    "description": "是否显示边框 默认值：false"
  },
  "var-cell/icon-class": {
    "type": "string",
    "description": "图标额外类名 默认值：-"
  },
  "var-cell/title-class": {
    "type": "string",
    "description": "标题额外类名 默认值：-"
  },
  "var-cell/desc-class": {
    "type": "string",
    "description": "描述额外类名 默认值：-"
  },
  "var-cell/extra-class": {
    "type": "string",
    "description": "右侧内容额外类名 默认值：-"
  },
  "var-checkbox/v-model": {
    "type": "any",
    "description": "绑定的值 默认值：false"
  },
  "var-checkbox/checked-value": {
    "type": "any",
    "description": "选中状态的值 默认值：true"
  },
  "var-checkbox/unchecked-value": {
    "type": "any",
    "description": "未选中状态的值 默认值：false"
  },
  "var-checkbox/checked-color": {
    "type": "any",
    "description": "选中状态的颜色 默认值：-"
  },
  "var-checkbox/unchecked-color": {
    "type": "any",
    "description": "未选中状态的颜色 默认值：-"
  },
  "var-checkbox/icon-size": {
    "type": "string | number",
    "description": "图标尺寸 默认值：-"
  },
  "var-checkbox/disabled": {
    "type": "boolean",
    "description": "是否禁用 默认值：false"
  },
  "var-checkbox/readonly": {
    "type": "boolean",
    "description": "是否只读 默认值：false"
  },
  "var-checkbox/ripple": {
    "type": "boolean",
    "description": "是否开启水波纹 默认值：true"
  },
  "var-checkbox/rules": {
    "type": "Array<(value: any) => any>",
    "description": "验证规则，返回 `true` 表示验证通过，其余的值则转换为文本作为用户提示 默认值：-"
  },
  "var-checkbox-group/v-model": {
    "type": "any[]",
    "description": "绑定的值 默认值：[]"
  },
  "var-checkbox-group/max": {
    "type": "string | number",
    "description": "最大选择的数量 默认值：-"
  },
  "var-checkbox-group/direction": {
    "type": "string | number",
    "description": "布局方向，可选值为 `horizontal` `vertical` 默认值：horizontal"
  },
  "var-checkbox-group/rules": {
    "type": "Array<(value: any[]) => any>",
    "description": "验证规则，返回 `true` 表示验证通过，其余的值则转换为文本作为用户提示 默认值：horizontal"
  },
  "var-chip/type": {
    "type": "string",
    "description": "类型，可选值为 `default` `primary` `info` `success` `warning` `danger` 默认值：default"
  },
  "var-chip/size": {
    "type": "string",
    "description": "尺寸，可选值为 `normal` `mini` `small` `large` 默认值：normal"
  },
  "var-chip/plain": {
    "type": "boolean",
    "description": "是否为空心样式 默认值：false"
  },
  "var-chip/round": {
    "type": "boolean",
    "description": "是否为圆角样式 默认值：true"
  },
  "var-chip/block": {
    "type": "boolean",
    "description": "是否为块级样式 默认值：false"
  },
  "var-chip/closeable": {
    "type": "boolean",
    "description": "是否为可关闭纸片 默认值：false"
  },
  "var-chip/close-name": {
    "type": "string",
    "description": "自定义可关闭纸片的图标，必须在 `closeable` 为 `true` 的条件下才能用 默认值：-"
  },
  "var-chip/color": {
    "type": "string",
    "description": "纸片颜色 默认值：_"
  },
  "var-chip/text-color": {
    "type": "string",
    "description": "文本颜色，优先级高于 `color` 属性 默认值：-"
  },
  "var-col/span": {
    "type": "number | string",
    "description": "列占据的栅格数 默认值：24"
  },
  "var-col/offset": {
    "type": "number | string",
    "description": "列偏移的栅格数 默认值：0"
  },
  "var-col/xs": {
    "type": "string | number | { span?: number | string, offset?: number | string }",
    "description": "`<768px` 响应式栅格数或者栅格属性对象 默认值：-"
  },
  "var-col/sm": {
    "type": "string | number | { span?: number | string, offset?: number | string }",
    "description": "`≥768px` 响应式栅格数或者栅格属性对象 默认值：-"
  },
  "var-col/md": {
    "type": "string | number | { span?: number | string, offset?: number | string }",
    "description": "`≥992px` 响应式栅格数或者栅格属性对象 默认值：-"
  },
  "var-col/lg": {
    "type": "string | number | { span?: number | string, offset?: number | string }",
    "description": "`≥1200px` 响应式栅格数或者栅格属性对象 默认值：-"
  },
  "var-col/xl": {
    "type": "string | number | { span?: number | string, offset?: number | string }",
    "description": "`≥1920px` 响应式栅格数或者栅格属性对象 默认值：-"
  },
  "var-collapse/v-model": {
    "type": "手风琴模式： string | number<br> 非手风琴模式：string[] | number[]",
    "description": "当前展开面板的 name 默认值：-"
  },
  "var-collapse/accordion": {
    "type": "boolean",
    "description": "是否开启手风琴模式 默认值：false"
  },
  "var-collapse/offset": {
    "type": "boolean",
    "description": "是否显示边距 默认值：true"
  },
  "var-collapse-item/name": {
    "type": "number | string",
    "description": "唯一标识符，默认为索引值 默认值：index"
  },
  "var-collapse-item/title": {
    "type": "number | string",
    "description": "面板标题 默认值：-"
  },
  "var-collapse-item/icon": {
    "type": "string",
    "description": "icon的名称 默认值：chevron-down"
  },
  "var-collapse-item/disabled": {
    "type": "boolean",
    "description": "是否禁用面板 默认值：false"
  },
  "var-countdown/time": {
    "type": "string | number",
    "description": "倒计时时长（ms） 默认值：0"
  },
  "var-countdown/format": {
    "type": "string",
    "description": "时间格式 默认值：HH : mm : ss"
  },
  "var-countdown/auto-start": {
    "type": "boolean",
    "description": "是否自动开始倒计时 默认值：true"
  },
  "var-counter/v-model": {
    "type": "string | number",
    "description": "绑定的值 默认值：0"
  },
  "var-counter/min": {
    "type": "string | number",
    "description": "最小值 默认值：-"
  },
  "var-counter/max": {
    "type": "string | number",
    "description": "最大值 默认值：-"
  },
  "var-counter/step": {
    "type": "string | number",
    "description": "步长 默认值：-"
  },
  "var-counter/decimal-length": {
    "type": "string | number",
    "description": "保留小数位数 默认值：-"
  },
  "var-counter/color": {
    "type": "string",
    "description": "背景颜色 默认值：-"
  },
  "var-counter/input-width": {
    "type": "string | number",
    "description": "输入框的宽度 默认值：-"
  },
  "var-counter/input-text-size": {
    "type": "string | number",
    "description": "输入框的文字大小 默认值：-"
  },
  "var-counter/button-size": {
    "type": "string",
    "description": "按钮大小 默认值：true"
  },
  "var-counter/readonly": {
    "type": "boolean",
    "description": "是否只读 默认值：false"
  },
  "var-counter/disabled": {
    "type": "boolean",
    "description": "是否禁用 默认值：false"
  },
  "var-counter/disable-increment": {
    "type": "boolean",
    "description": "是否禁用增加 默认值：false"
  },
  "var-counter/disable-decrement": {
    "type": "boolean",
    "description": "是否禁用减少 默认值：false"
  },
  "var-counter/disable-input": {
    "type": "boolean",
    "description": "是否禁用输入 默认值：false"
  },
  "var-counter/increment-button": {
    "type": "boolean",
    "description": "是否显示增加按钮 默认值：true"
  },
  "var-counter/decrement-button": {
    "type": "boolean",
    "description": "是否显示减少按钮 默认值：true"
  },
  "var-counter/press": {
    "type": "boolean",
    "description": "是否开启按钮长按 默认值：true"
  },
  "var-counter/ripple": {
    "type": "boolean",
    "description": "是否开启水波纹 默认值：true"
  },
  "var-counter/validate-trigger": {
    "type": "ValidateTriggers[]",
    "description": "触发验证的时机，可选值为 `onInputChange` `onLazyChange` `onIncrement` `onDecrement` 默认值：['onIncrement', 'onDecrement', 'onInputChange', 'onLazyChange']"
  },
  "var-counter/rules": {
    "type": "Array<(value: number) => any>",
    "description": "验证规则，返回 `true` 表示验证通过，其余的值则转换为文本作为用户提示 默认值：-"
  },
  "var-date-picker/v-model": {
    "type": "string[] | string",
    "description": "被选择的日期（ISO 8601 格式，`YYYY-MM-DD` 或 `YYYY-MM`） 默认值：undefined"
  },
  "var-date-picker/type": {
    "type": "string",
    "description": "选择器类型，可选值为 `date month` 默认值：date"
  },
  "var-date-picker/allowed-dates": {
    "type": "function",
    "description": "限制可以选择的日期 默认值：-"
  },
  "var-date-picker/color": {
    "type": "string",
    "description": "选择器的颜色 默认值：#2979ff"
  },
  "var-date-picker/header-color": {
    "type": "string",
    "description": "标题背景色。如果未指定，将使用由 color 属性或默认颜色。 默认值：#2979ff"
  },
  "var-date-picker/shadow": {
    "type": "boolean",
    "description": "是否添加阴影 默认值：false"
  },
  "var-date-picker/first-day-of-week": {
    "type": "string | number",
    "description": "设置一周的第一天，从周日的 0 开始。 默认值：0"
  },
  "var-date-picker/min": {
    "type": "string",
    "description": "允许的最小日期/月份（ISO 8601格式） 默认值：-"
  },
  "var-date-picker/max": {
    "type": "string",
    "description": "允许的最大日期/月份（ISO 8601格式） 默认值：-"
  },
  "var-date-picker/show-current": {
    "type": "boolean",
    "description": "是否显示当前日期 默认值：true"
  },
  "var-date-picker/readonly": {
    "type": "boolean",
    "description": "是否只读 默认值：false"
  },
  "var-date-picker/multiple": {
    "type": "boolean",
    "description": "是否支持选择多个日期 默认值：false"
  },
  "var-date-picker/range": {
    "type": "boolean",
    "description": "是否支持选择一个范围 默认值：false"
  },
  "var-date-picker/touchable": {
    "type": "boolean",
    "description": "是否支持拖动切换面板 默认值：true"
  },
  "var-dialog/show.sync": {
    "type": "boolean",
    "description": "是否显示对话框 默认值：false"
  },
  "var-dialog/title": {
    "type": "string",
    "description": "对话框标题 默认值：提示"
  },
  "var-dialog/message": {
    "type": "string",
    "description": "对话框内容 默认值：-"
  },
  "var-dialog/message-align": {
    "type": "string",
    "description": "对话框内容文字对齐方式，可选值 `center` `left` `right` 默认值：left"
  },
  "var-dialog/confirm-button": {
    "type": "boolean",
    "description": "是否显示确认按钮 默认值：true"
  },
  "var-dialog/cancel-button": {
    "type": "boolean",
    "description": "是否显示取消按钮 默认值：true"
  },
  "var-dialog/confirm-button-text": {
    "type": "string",
    "description": "确认按钮文字 默认值：确认"
  },
  "var-dialog/cancel-button-text": {
    "type": "string",
    "description": "取消按钮文字 默认值：取消"
  },
  "var-dialog/confirm-button-text-color": {
    "type": "string",
    "description": "确认按钮文字颜色 默认值：-"
  },
  "var-dialog/cancel-button-text-color": {
    "type": "string",
    "description": "取消按钮文字颜色 默认值：-"
  },
  "var-dialog/confirm-button-color": {
    "type": "string",
    "description": "确认按钮背景颜色 默认值：-"
  },
  "var-dialog/cancel-button-color": {
    "type": "string",
    "description": "取消按钮背景颜色 默认值：-"
  },
  "var-dialog/dialog-class": {
    "type": "string",
    "description": "对话框主体区域的 class 默认值：-"
  },
  "var-dialog/dialog-style": {
    "type": "object",
    "description": "对话框主体区域的 style 默认值：-"
  },
  "var-dialog/overlay": {
    "type": "boolean",
    "description": "是否显示遮罩层 默认值：true"
  },
  "var-dialog/overlay-class": {
    "type": "string",
    "description": "自定义遮罩层的 class 默认值：-"
  },
  "var-dialog/overlay-style": {
    "type": "object",
    "description": "自定义遮罩层的 style 默认值：-"
  },
  "var-dialog/lock-scroll": {
    "type": "boolean",
    "description": "是否禁止滚动穿透，禁止时滚动弹出层不会引发 body 的滚动 默认值：true"
  },
  "var-dialog/close-on-click-overlay": {
    "type": "boolean",
    "description": "是否点击遮罩层关闭弹出层 默认值：true"
  },
  "var-dialog/teleport": {
    "type": "TeleportProps['to']",
    "description": "弹出层挂载的位置 默认值：-"
  },
  "var-divider/inset": {
    "type": "boolean | number | string",
    "description": "设置缩进距离，正负号可控制缩进方向。当传递 `true` 时默认缩进为 `72px` 默认值：false"
  },
  "var-divider/vertical": {
    "type": "boolean",
    "description": "是否垂直 默认值：false"
  },
  "var-divider/dashed": {
    "type": "boolean",
    "description": "虚线 默认值：false"
  },
  "var-divider/description": {
    "type": "string",
    "description": "分割线的文字描述 默认值：-"
  },
  "var-divider/margin": {
    "type": "string",
    "description": "设置分割线样式的 `margin` 属性 默认值：-"
  },
  "var-form/readonly": {
    "type": "boolean",
    "description": "是否只读 默认值：false"
  },
  "var-form/disabled": {
    "type": "boolean",
    "description": "是否禁用 默认值：false"
  },
  "var-icon/name": {
    "type": "string",
    "description": "图标名称 默认值：-"
  },
  "var-icon/size": {
    "type": "string | number",
    "description": "尺寸 默认值：-"
  },
  "var-icon/color": {
    "type": "string",
    "description": "图标颜色, 只适用于字体图标 默认值：-"
  },
  "var-icon/namespace": {
    "type": "string",
    "description": "图标的命名空间, 可扩展自定义图标库 默认值：var-icon"
  },
  "var-icon/transition": {
    "type": "string | number",
    "description": "过渡动画时间（ms） 默认值：0"
  },
  "var-image/src": {
    "type": "string",
    "description": "图片地址 默认值：-"
  },
  "var-image/fit": {
    "type": "string",
    "description": "填充模式, 可选值为 `fill contain cover none scale-down` 默认值：fill"
  },
  "var-image/alt": {
    "type": "string",
    "description": "替代文本 默认值：-"
  },
  "var-image/width": {
    "type": "string | number",
    "description": "图片宽度 默认值：-"
  },
  "var-image/height": {
    "type": "string | number",
    "description": "图片高度 默认值：-"
  },
  "var-image/radius": {
    "type": "string | number",
    "description": "图片圆角 默认值：-"
  },
  "var-image/lazy": {
    "type": "boolean",
    "description": "是否开启懒加载 默认值：false"
  },
  "var-image/loading": {
    "type": "string",
    "description": "当开启懒加载时, 加载中显示的图片 默认值：-"
  },
  "var-image/error": {
    "type": "string",
    "description": "当开启懒加载时, 加载失败显示的图片 默认值：-"
  },
  "var-image/ripple": {
    "type": "boolean",
    "description": "是否开启水波 默认值：false"
  },
  "var-image/block": {
    "type": "boolean",
    "description": "是否是块级元素 默认值：true"
  },
  "var-image-preview/show": {
    "type": "boolean",
    "description": "是否显示 默认值：false"
  },
  "var-image-preview/images": {
    "type": "string[]",
    "description": "需要预览的图片 URL 数组 默认值：[]"
  },
  "var-image-preview/current": {
    "type": "string",
    "description": "图片预览起始的 URL 默认值：-"
  },
  "var-image-preview/zoom": {
    "type": "string | number",
    "description": "双击放大倍数 默认值：2"
  },
  "var-image-preview/closeable": {
    "type": "boolean",
    "description": "是否显示关闭按钮 默认值：false"
  },
  "var-image-preview/loop": {
    "type": "boolean",
    "description": "是否开启循环播放 默认值：true"
  },
  "var-image-preview/indicator": {
    "type": "boolean",
    "description": "是否显示分页 默认值：true"
  },
  "var-image-preview/lock-scroll": {
    "type": "boolean",
    "description": "锁定滚动 默认值：true"
  },
  "var-image-preview/teleport": {
    "type": "TeleportProps['to']",
    "description": "弹出层挂载的位置 默认值：-"
  },
  "var-index-anchor/index": {
    "type": "number | string",
    "description": "索引字符 默认值：-"
  },
  "var-index-bar/sticky": {
    "type": "boolean",
    "description": "是否开启锚点吸顶 默认值：true"
  },
  "var-index-bar/sticky-offset-top": {
    "type": "number",
    "description": "锚点吸顶时与顶部的距离 默认值：0"
  },
  "var-index-bar/hide-list": {
    "type": "boolean",
    "description": "是否隐藏锚点列表 默认值：false"
  },
  "var-index-bar/css-mode": {
    "type": "boolean",
    "description": "开启原生 `css sticky` 模式 默认值：false"
  },
  "var-index-bar/z-index": {
    "type": "number | string",
    "description": "z-index 层级 默认值：1"
  },
  "var-index-bar/highlight-color": {
    "type": "string",
    "description": "索引字符高亮颜色 默认值：#ee0a24"
  },
  "var-index-bar/duration": {
    "type": "string | number",
    "description": "动画持续时间 默认值：0"
  },
  "var-input/v-model": {
    "type": "string",
    "description": "绑定的值 默认值：-"
  },
  "var-input/placeholder": {
    "type": "string",
    "description": "占位符 默认值：-"
  },
  "var-input/type": {
    "type": "string",
    "description": "输入框类型, 可选值为 `text` `password` `number` 默认值：text"
  },
  "var-input/maxlength": {
    "type": "string | number",
    "description": "最大长度 默认值：-"
  },
  "var-input/textarea": {
    "type": "boolean",
    "description": "是否是文本域 默认值：false"
  },
  "var-input/rows": {
    "type": "string | number",
    "description": "文本域的显示行数 默认值：8"
  },
  "var-input/line": {
    "type": "boolean",
    "description": "是否显示分割线 默认值：true"
  },
  "var-input/hint": {
    "type": "boolean",
    "description": "是否使用占位符作为提示 默认值：true"
  },
  "var-input/text-color": {
    "type": "string",
    "description": "文字颜色 默认值：-"
  },
  "var-input/focus-color": {
    "type": "string",
    "description": "聚焦时的主要颜色 默认值：-"
  },
  "var-input/blur-color": {
    "type": "string",
    "description": "失焦时的主要颜色 默认值：-"
  },
  "var-input/readonly": {
    "type": "boolean",
    "description": "是否只读 默认值：false"
  },
  "var-input/disabled": {
    "type": "boolean",
    "description": "是否禁用 默认值：false"
  },
  "var-input/clearable": {
    "type": "boolean",
    "description": "是否可清除 默认值：false"
  },
  "var-input/resize": {
    "type": "boolean",
    "description": "文本域是否可以拖动调整尺寸 默认值：false"
  },
  "var-input/validate-trigger": {
    "type": "ValidateTriggers[]",
    "description": "触发验证的时机，可选值为 `onFocus` `onBlur` `onChange` `onClick` `onClear` `onInput` 默认值：['onInput', 'onClear']"
  },
  "var-input/rules": {
    "type": "Array<(v: string) => any>",
    "description": "验证规则，返回 `true` 表示验证通过，其余的值则转换为文本作为用户提示 默认值：-"
  },
  "var-list/loading.sync": {
    "type": "boolean",
    "description": "加载状态 默认值：false"
  },
  "var-list/error.sync": {
    "type": "boolean",
    "description": "错误状态 默认值：false"
  },
  "var-list/immediate-check": {
    "type": "boolean",
    "description": "是否在组件初始化时立刻检测位置 默认值：true"
  },
  "var-list/finished": {
    "type": "boolean",
    "description": "是否加载完毕 默认值：false"
  },
  "var-list/offset": {
    "type": "string | number",
    "description": "距离底部的触发距离 默认值：0"
  },
  "var-list/loading-text": {
    "type": "string",
    "description": "加载状态文字 默认值：加载中"
  },
  "var-list/finished-text": {
    "type": "string",
    "description": "加载完毕文字 默认值：没有更多了"
  },
  "var-list/error-text": {
    "type": "string",
    "description": "加载失败文字 默认值：加载失败"
  },
  "var-loading/color": {
    "type": "string",
    "description": "loading 的颜色 默认值：currentColor"
  },
  "var-loading/type": {
    "type": "string",
    "description": "loading 的类型，可选值为 `circle` `wave` `cube` `rect` `disappear` 默认值：circle"
  },
  "var-loading/size": {
    "type": "string",
    "description": "loading 的大小，可选值位 `large` `normal` `small` `mini` 默认值：normal"
  },
  "var-loading/description": {
    "type": "string",
    "description": "loading 的描述文字 默认值：-"
  },
  "var-loading/loading": {
    "type": "boolean",
    "description": "存在内容时 loading 是否显示 默认值：false"
  },
  "var-loading/radius": {
    "type": "string | number",
    "description": "loading 的类型为 `circle` 时，可设置其大小 默认值：-"
  },
  "var-menu/show.sync": {
    "type": "string",
    "description": "是否显示菜单 默认值：default"
  },
  "var-menu/alignment": {
    "type": "string",
    "description": "菜单的对齐方式， 可选值为 `top` `bottom`， 源点为默认插槽的左上角，top 为菜单顶部对齐源点，bottom 为菜单底部对齐 默认值：top"
  },
  "var-menu/offset-x": {
    "type": "number | string",
    "description": "x 轴偏移量， 相对于菜单对齐后的位置 默认值：0"
  },
  "var-menu/offset-y": {
    "type": "number | string",
    "description": "y 轴偏移量， 相对于菜单对齐后的位置 默认值：0"
  },
  "var-menu/teleport": {
    "type": "TeleportProps['to']",
    "description": "菜单挂载的位置 默认值：body"
  },
  "var-option/label": {
    "type": "any",
    "description": "选项显示的文本 默认值：-"
  },
  "var-option/value": {
    "type": "any",
    "description": "选项绑定的值 默认值：-"
  },
  "var-pagination/current.sync": {
    "type": "string | number",
    "description": "当前页数 默认值：1"
  },
  "var-pagination/size.sync": {
    "type": "string | number",
    "description": "每页条数 默认值：10"
  },
  "var-pagination/total": {
    "type": "string | number",
    "description": "总条数 默认值：0"
  },
  "var-pagination/simple": {
    "type": "boolean",
    "description": "是否为简单模式 默认值：true"
  },
  "var-pagination/disabled": {
    "type": "boolean",
    "description": "禁用分页 默认值：false"
  },
  "var-pagination/show-size-changer": {
    "type": "boolean",
    "description": "是否显示 `size` 切换器 默认值：true"
  },
  "var-pagination/show-quick-jumper": {
    "type": "boolean",
    "description": "是否可以快速跳转至某页 默认值：false"
  },
  "var-pagination/max-pager-count": {
    "type": "number",
    "description": "省略号间显示的按钮数量 默认值：3"
  },
  "var-pagination/size-option": {
    "type": "number[]",
    "description": "指定每页可以显示多少条 默认值：[10, 20, 50, 100]"
  },
  "var-pagination/show-total": {
    "type": "function(total, range)",
    "description": "用于显示数据总量和当前数据顺序 默认值：-"
  },
  "var-picker/columns": {
    "type": "NormalColumn[] | CascadeColumn[] | Texts",
    "description": "列内容 默认值：[]"
  },
  "var-picker/title": {
    "type": "string",
    "description": "标题 默认值：提示"
  },
  "var-picker/text-key": {
    "type": "string",
    "description": "文本的属性 key 默认值：text"
  },
  "var-picker/toolbar": {
    "type": "string",
    "description": "是否显示上方工具栏 默认值：true"
  },
  "var-picker/cascade": {
    "type": "boolean",
    "description": "是否开启级联模式 默认值：true"
  },
  "var-picker/text-formatter": {
    "type": "(text: any, columnIndex: number) => any",
    "description": "文本格式化 默认值：text => text"
  },
  "var-picker/option-height": {
    "type": "string | number",
    "description": "选项的高度(px rem) 默认值：44"
  },
  "var-picker/option-count": {
    "type": "string | number",
    "description": "可见的选项个数 默认值：6"
  },
  "var-picker/confirm-button-text": {
    "type": "string",
    "description": "确认按钮文字 默认值：确认"
  },
  "var-picker/cancel-button-text": {
    "type": "string",
    "description": "取消按钮文字 默认值：取消"
  },
  "var-picker/confirm-button-text-color": {
    "type": "string",
    "description": "确认按钮文字颜色 默认值：-"
  },
  "var-picker/cancel-button-text-color": {
    "type": "string",
    "description": "取消按钮文字颜色 默认值：-"
  },
  "var-popup/show.sync": {
    "type": "boolean",
    "description": "是否显示弹出层 默认值：false"
  },
  "var-popup/position": {
    "type": "string",
    "description": "弹出位置，可选值为 `top` `bottom` `right` `left` `center` 默认值：center"
  },
  "var-popup/overlay": {
    "type": "boolean",
    "description": "是否显示遮罩层 默认值：true"
  },
  "var-popup/overlay-class": {
    "type": "string",
    "description": "自定义遮罩层的 class 默认值：-"
  },
  "var-popup/overlay-style": {
    "type": "object",
    "description": "自定义遮罩层的 style 默认值：-"
  },
  "var-popup/transition": {
    "type": "string",
    "description": "过度动画的名称 默认值：-"
  },
  "var-popup/lock-scroll": {
    "type": "boolean",
    "description": "是否禁止滚动穿透，禁止时滚动弹出层不会引发 body 的滚动 默认值：true"
  },
  "var-popup/close-on-click-overlay": {
    "type": "boolean",
    "description": "是否点击遮罩层关闭弹出层 默认值：true"
  },
  "var-popup/teleport": {
    "type": "TeleportProps['to']",
    "description": "弹出层挂载的位置 默认值：-"
  },
  "var-progress/mode": {
    "type": "string",
    "description": "`progress` 的模式，可选值为 `linear, circle` 默认值：linear"
  },
  "var-progress/value": {
    "type": "string | number",
    "description": "`progress` 的进度 默认值：0"
  },
  "var-progress/line-width": {
    "type": "string | number",
    "description": "`progress` 的线宽 默认值：4"
  },
  "var-progress/color": {
    "type": "string",
    "description": "`progress` 的颜色 默认值：#005CAF"
  },
  "var-progress/track-color": {
    "type": "string",
    "description": "`progress` 轨道的颜色 默认值：#d8d8d8"
  },
  "var-progress/label": {
    "type": "boolean",
    "description": "是否显示 label 默认值：false"
  },
  "var-progress/track": {
    "type": "boolean",
    "description": "是否显示 `progress` 的轨道 默认值：true"
  },
  "var-progress/ripple": {
    "type": "boolean",
    "description": "水波纹加载效果（仅支持线性进度条） 默认值：false"
  },
  "var-progress/size": {
    "type": "string | number",
    "description": "`progress` 的尺寸（仅支持环形进度条） 默认值：40"
  },
  "var-progress/rotate": {
    "type": "number",
    "description": "`progress` 的原点（仅支持环形进度条） 默认值：0"
  },
  "var-pull-refresh/v-model": {
    "type": "boolean",
    "description": "是否处于加载中状态 默认值：-"
  },
  "var-pull-refresh/disabled": {
    "type": "boolean",
    "description": "是否禁用下拉刷新 默认值：false"
  },
  "var-pull-refresh/animation-duration": {
    "type": "string | number",
    "description": "加载结束后回到初始位置的动画时长（ms） 默认值：300"
  },
  "var-pull-refresh/success-duration": {
    "type": "string | number",
    "description": "成功提示展示时长（ms） 默认值：2000"
  },
  "var-pull-refresh/bg-color": {
    "type": "string",
    "description": "control 的背景颜色 默认值：#005CAF"
  },
  "var-pull-refresh/color": {
    "type": "string",
    "description": "control 的颜色 默认值：#ffffff"
  },
  "var-pull-refresh/success-bg-color": {
    "type": "string",
    "description": "成功状态下 control 的背景颜色 默认值：#4CAF50"
  },
  "var-pull-refresh/success-color": {
    "type": "string",
    "description": "成功状态下 control 的颜色 默认值：ffffff"
  },
  "var-radio/v-model": {
    "type": "any",
    "description": "绑定的值 默认值：false"
  },
  "var-radio/checked-value": {
    "type": "any",
    "description": "选中状态的值 默认值：true"
  },
  "var-radio/unchecked-value": {
    "type": "any",
    "description": "未选中状态的值 默认值：false"
  },
  "var-radio/checked-color": {
    "type": "any",
    "description": "选中状态的颜色 默认值：-"
  },
  "var-radio/unchecked-color": {
    "type": "any",
    "description": "未选中状态的颜色 默认值：-"
  },
  "var-radio/icon-size": {
    "type": "string",
    "description": "图标尺寸 默认值：\\ number_"
  },
  "var-radio/disabled": {
    "type": "boolean",
    "description": "是否禁用 默认值：false"
  },
  "var-radio/readonly": {
    "type": "boolean",
    "description": "是否只读 默认值：false"
  },
  "var-radio/ripple": {
    "type": "boolean",
    "description": "是否开启水波纹 默认值：true"
  },
  "var-radio/rules": {
    "type": "Array<(value: any) => any>",
    "description": "验证规则，返回 `true` 表示验证通过，其余的值则转换为文本作为用户提示 默认值：-"
  },
  "var-radio-group/v-model": {
    "type": "any",
    "description": "绑定的值 默认值：-"
  },
  "var-radio-group/direction": {
    "type": "string",
    "description": "布局方向，可选值为 `horizontal` `vertical` 默认值：horizontal"
  },
  "var-radio-group/rules": {
    "type": "Array<(value: any) => any>",
    "description": "验证规则，返回 `true` 表示验证通过，其余的值则转换为文本作为用户提示 默认值：-"
  },
  "var-rate/v-model": {
    "type": "number | string",
    "description": "当前分数 默认值：0"
  },
  "var-rate/count": {
    "type": "number | string",
    "description": "评分总数 默认值：5"
  },
  "var-rate/color": {
    "type": "string",
    "description": "选中时图标的颜色 默认值：-"
  },
  "var-rate/icon": {
    "type": "string",
    "description": "选中整个图标时的图标样式 默认值：star"
  },
  "var-rate/empty-color": {
    "type": "string",
    "description": "未选中时图标的颜色 默认值：-"
  },
  "var-rate/empty-icon": {
    "type": "string",
    "description": "未选中时图标的样式 默认值：star-outline"
  },
  "var-rate/size": {
    "type": "number | string",
    "description": "图标大小，默认单位为 `px` 默认值：20"
  },
  "var-rate/gap": {
    "type": "number | string",
    "description": "图标间隔，默认单位为 `px` 默认值：4"
  },
  "var-rate/half": {
    "type": "boolean",
    "description": "是否允许半选 默认值：false"
  },
  "var-rate/half-icon": {
    "type": "string",
    "description": "半选时图标的样式，只有在 `half` 为 `true` 时才有效 默认值：star-half-full"
  },
  "var-rate/disabled": {
    "type": "boolean",
    "description": "是否禁止评分 默认值：false"
  },
  "var-rate/disabled-color": {
    "type": "string",
    "description": "禁止评分时图标的颜色，只有在 `disabled` 为 `true` 时才有效，优先级高于 `color`、`empty-color` 默认值：-"
  },
  "var-rate/readonly": {
    "type": "boolean",
    "description": "是否使用评分只读 默认值：false"
  },
  "var-rate/ripple": {
    "type": "boolean",
    "description": "是否使用水波纹 默认值：true"
  },
  "var-rate/rules": {
    "type": "Array<(v: string | number) => any>",
    "description": "验证规则，返回 `true` 表示验证通过，其余的值则转换为文本作为用户提示 默认值：-"
  },
  "var-row/gutter": {
    "type": "string | number",
    "description": "列间距 默认值：0"
  },
  "var-row/justify": {
    "type": "string",
    "description": "主轴对齐方式, 可选值为 `flex-start` `flex-end` `center` `space-between` `space-around` 默认值：flex-start"
  },
  "var-row/align": {
    "type": "string",
    "description": "交叉轴对齐方式, 可选值为 `flex-start` `flex-end` `center` 默认值：flex-start"
  },
  "var-select/v-model": {
    "type": "any | any[]",
    "description": "绑定的值 默认值：-"
  },
  "var-select/placeholder": {
    "type": "string",
    "description": "占位符 默认值：-"
  },
  "var-select/multiple": {
    "type": "boolean",
    "description": "是否开启多选 默认值：false"
  },
  "var-select/offset-y": {
    "type": "string | number",
    "description": "下拉菜单的垂直偏移量 默认值：true"
  },
  "var-select/chip": {
    "type": "boolean",
    "description": "是否使用纸片风格(仅限多选) 默认值：false"
  },
  "var-select/line": {
    "type": "boolean",
    "description": "是否显示分割线 默认值：true"
  },
  "var-select/hint": {
    "type": "boolean",
    "description": "是否使用占位符作为提示 默认值：true"
  },
  "var-select/text-color": {
    "type": "string",
    "description": "文字颜色 默认值：-"
  },
  "var-select/focus-color": {
    "type": "string",
    "description": "聚焦时的主要颜色 默认值：-"
  },
  "var-select/blur-color": {
    "type": "string",
    "description": "失焦时的主要颜色 默认值：-"
  },
  "var-select/readonly": {
    "type": "boolean",
    "description": "是否只读 默认值：false"
  },
  "var-select/disabled": {
    "type": "boolean",
    "description": "是否禁用 默认值：false"
  },
  "var-select/clearable": {
    "type": "boolean",
    "description": "是否可清除 默认值：false"
  },
  "var-select/validate-trigger": {
    "type": "ValidateTriggers[]",
    "description": "触发验证的时机，可选值为 `onFocus` `onBlur` `onChange` `onClick` `onClear` `onClose` 默认值：['onChange', 'onClear', 'onClose']"
  },
  "var-select/rules": {
    "type": "Array<(v: any | any[]) => any>",
    "description": "验证规则，返回 `true` 表示验证通过，其余的值则转换为文本作为用户提示 默认值：-"
  },
  "var-skeleton/loading": {
    "type": "boolean",
    "description": "加载状态，设置为 `true` 开启骨架屏 默认值：true"
  },
  "var-skeleton/title": {
    "type": "boolean",
    "description": "是否显示标题 默认值：false"
  },
  "var-skeleton/card": {
    "type": "boolean",
    "description": "是否显示卡片 默认值：false"
  },
  "var-skeleton/avatar": {
    "type": "boolean",
    "description": "是否显示头像 默认值：false"
  },
  "var-skeleton/fullscreen": {
    "type": "boolean",
    "description": "是否开启全屏模式 默认值：false"
  },
  "var-skeleton/fullscreen-z-index": {
    "type": "string | number",
    "description": "全屏模式的层级 默认值：100"
  },
  "var-skeleton/title-width": {
    "type": "string | number",
    "description": "标题宽度 默认值：50%"
  },
  "var-skeleton/card-height": {
    "type": "string | number",
    "description": "卡片高度 默认值：160px"
  },
  "var-skeleton/avatar-size": {
    "type": "string | number",
    "description": "头像尺寸 默认值：34px"
  },
  "var-skeleton/rows": {
    "type": "string | number",
    "description": "段落行数 默认值：3"
  },
  "var-skeleton/rows-width": {
    "type": "number[] | string[]",
    "description": "段落每一行的宽度 默认值：['12px', '12px', '12px']"
  },
  "var-slider/v-model": {
    "type": "number | [number, number]",
    "description": "当前进度值 默认值：0"
  },
  "var-slider/step": {
    "type": "string | number",
    "description": "步长，取值为 `1 ~ 100` 间的整数 默认值：1"
  },
  "var-slider/range": {
    "type": "boolean",
    "description": "是否启用双滑块 默认值：false"
  },
  "var-slider/label-visible": {
    "type": "string",
    "description": "是否显示标签，可选值为 `always normal never` 默认值：normal"
  },
  "var-slider/label-text-color": {
    "type": "string",
    "description": "标签文字颜色 默认值：#fff"
  },
  "var-slider/track-height": {
    "type": "string | number",
    "description": "slider的高度 默认值：2"
  },
  "var-slider/thumb-size": {
    "type": "string | number",
    "description": "滑块的大小 默认值：12"
  },
  "var-slider/disabled": {
    "type": "boolean",
    "description": "是否禁用 默认值：false"
  },
  "var-slider/readonly": {
    "type": "boolean",
    "description": "是否只读 默认值：false"
  },
  "var-slider/rules": {
    "type": "array",
    "description": "校验规则 默认值：-"
  },
  "var-snackbar/show.sync": {
    "type": "boolean",
    "description": "是否显示 `Snackbar` 默认值：false"
  },
  "var-snackbar/type": {
    "type": "string",
    "description": "`Snackbar` 类型，可选值为 `success warning info error loading` 默认值：-"
  },
  "var-snackbar/position": {
    "type": "string",
    "description": "`Snackbar`  位置，可选值为 `top center bottom` 默认值：top"
  },
  "var-snackbar/duration": {
    "type": "number",
    "description": "显示时长 默认值：3000"
  },
  "var-snackbar/content": {
    "type": "string",
    "description": "自定义内容 默认值：-"
  },
  "var-snackbar/content-class": {
    "type": "string",
    "description": "自定义内容的类名 默认值：-"
  },
  "var-snackbar/vertical": {
    "type": "boolean",
    "description": "是否启用竖直排列方式 默认值：false"
  },
  "var-snackbar/loading-type": {
    "type": "string",
    "description": "加载动画类型(见 `Loading` 组件) 默认值：circle"
  },
  "var-snackbar/loading-size": {
    "type": "string",
    "description": "加载动画大小(见 `Loading` 组件) 默认值：normal"
  },
  "var-snackbar/lock-scroll": {
    "type": "boolean",
    "description": "是否禁止滚动穿透 默认值：false"
  },
  "var-snackbar/forbid-click": {
    "type": "boolean",
    "description": "是否禁止穿透点击 默认值：false"
  },
  "var-snackbar/teleport": {
    "type": "TeleportProps['to']",
    "description": "弹出层挂载的位置 默认值：body"
  },
  "var-space/align": {
    "type": "string",
    "description": "垂直排列方式 可选值为 `stretch` `center` `start` `end` `baseline` 默认值：-"
  },
  "var-space/justify": {
    "type": "string",
    "description": "水平排列方式 可选值为 `start` `end` `center` `space-around` `space-between` 默认值：start"
  },
  "var-space/size": {
    "type": "string | number | [string | number, string | number]",
    "description": "间距，可选值为 `mini` `small` `normal` `large` 或 `[垂直间距, 水平间距]` (支持长度单位) 默认值：normal"
  },
  "var-space/wrap": {
    "type": "boolean",
    "description": "是否超出换行 默认值：true"
  },
  "var-space/direction": {
    "type": "string",
    "description": "布局方向 可选值为 `row` `column` 默认值：row"
  },
  "var-space/inline": {
    "type": "boolean",
    "description": "是否为行内元素 默认值：false"
  },
  "var-step/active-icon": {
    "type": "string",
    "description": "激活状态图标 默认值：check"
  },
  "var-step/current-icon": {
    "type": "string",
    "description": "当前步骤时的图标 默认值：-"
  },
  "var-step/inactive-icon": {
    "type": "string",
    "description": "未激活状态图标 默认值：-"
  },
  "var-steps/active": {
    "type": "string | number",
    "description": "当前步骤 默认值：0"
  },
  "var-steps/direction": {
    "type": "string",
    "description": "显示方向，可选值为 `vertical` 默认值：horizontal"
  },
  "var-steps/active-color": {
    "type": "string",
    "description": "激活状态颜色 默认值：#2979ff"
  },
  "var-steps/inactive-color": {
    "type": "string",
    "description": "未激活状态颜色 默认值：#9e9e9e"
  },
  "var-sticky/offset-top": {
    "type": "string | number",
    "description": "吸顶距离 默认值：0"
  },
  "var-sticky/z-index": {
    "type": "string | number",
    "description": "吸顶时的层级 默认值：0"
  },
  "var-sticky/css-mode": {
    "type": "boolean",
    "description": "开启原生 `css sticky` 模式 默认值：false"
  },
  "var-sticky/disabled": {
    "type": "boolean",
    "description": "禁用吸顶, 设置为 `true` 时, 元素会回到文档流中 默认值：false"
  },
  "var-style-provider/style-vars": {
    "type": "Record<string, string>",
    "description": "css 变量 默认值：{}"
  },
  "var-swipe/loop": {
    "type": "boolean",
    "description": "是否开启循环轮播 默认值：true"
  },
  "var-swipe/autoplay": {
    "type": "string | number",
    "description": "自动播放间隔时间 (ms) 默认值：-"
  },
  "var-swipe/duration": {
    "type": "string | number",
    "description": "切换过度时间 默认值：300"
  },
  "var-swipe/initial-index": {
    "type": "string | number",
    "description": "初始化显示的索引 默认值：0"
  },
  "var-swipe/indicator": {
    "type": "boolean",
    "description": "是否显示指示器 默认值：true"
  },
  "var-swipe/indicator-color": {
    "type": "string",
    "description": "指示器颜色 默认值：-"
  },
  "var-swipe/vertical": {
    "type": "boolean",
    "description": "是否开启垂直轮播 默认值：false"
  },
  "var-swipe/touchable": {
    "type": "boolean",
    "description": "是否可以拖动 默认值：true"
  },
  "var-switch/v-model": {
    "type": "any",
    "description": "开关选中状态 默认值：false"
  },
  "var-switch/active-value": {
    "type": "any",
    "description": "开关打开时的值 默认值：true"
  },
  "var-switch/inactive-value": {
    "type": "any",
    "description": "开关关闭时的值 默认值：false"
  },
  "var-switch/disabled": {
    "type": "boolean",
    "description": "是否禁用 默认值：false"
  },
  "var-switch/readonly": {
    "type": "boolean",
    "description": "是否只读 默认值：false"
  },
  "var-switch/loading": {
    "type": "boolean",
    "description": "是否为加载状态 默认值：false"
  },
  "var-switch/ripple": {
    "type": "boolean",
    "description": "是否启用水波纹 默认值：true"
  },
  "var-switch/color": {
    "type": "string",
    "description": "打开状态下的颜色 默认值：#2979ff"
  },
  "var-switch/loading-color": {
    "type": "string",
    "description": "加载图标的颜色 默认值：#fff"
  },
  "var-switch/close-color": {
    "type": "string",
    "description": "关闭状态下的颜色 默认值：#fff"
  },
  "var-switch/size": {
    "type": "string | number",
    "description": "switch 的大小 默认值：20"
  },
  "var-switch/rules": {
    "type": "array",
    "description": "校验规则 默认值：-"
  },
  "var-tab/name": {
    "type": "string | number",
    "description": "选项卡的名字 默认值：index"
  },
  "var-tab/disabled": {
    "type": "boolean",
    "description": "是否禁用选项卡 默认值：false"
  },
  "var-tab-item/name": {
    "type": "string | number",
    "description": "视图的名字 默认值：index"
  },
  "var-tabs/active.sync": {
    "type": "string",
    "description": "激活的选项卡标识, 优先匹配 name，其次是 index 默认值：default"
  },
  "var-tabs/layout-direction": {
    "type": "string",
    "description": "选项卡组的布局方向，可选值为 `horizontal` `vertical` 默认值：horizontal"
  },
  "var-tabs/item-direction": {
    "type": "string",
    "description": "选项卡的布局方向，可选值为 `horizontal` `vertical` 默认值：horizontal"
  },
  "var-tabs/fixed-bottom": {
    "type": "boolean",
    "description": "是否固定在窗口底部, 可用做底部导航 默认值：false"
  },
  "var-tabs/color": {
    "type": "string",
    "description": "选项卡的背景颜色 默认值：#fff"
  },
  "var-tabs/active-color": {
    "type": "string",
    "description": "选项卡激活的主要颜色 默认值：#2979ff"
  },
  "var-tabs/inactive-color": {
    "type": "string",
    "description": "选项卡未激活的主要颜色 默认值：#646566"
  },
  "var-tabs/disabled-color": {
    "type": "string",
    "description": "选项卡禁用时的主要颜色 默认值：#e0e0e0"
  },
  "var-tabs/indicator-color": {
    "type": "string",
    "description": "选项卡激活指示器的颜色 默认值：#2979ff"
  },
  "var-tabs/indicator-size": {
    "type": "string | number",
    "description": "选项卡激活指示器的尺寸 默认值：2px"
  },
  "var-tabs/elevation": {
    "type": "boolean",
    "description": "是否启用阴影 默认值：false"
  },
  "var-tabs/sticky": {
    "type": "boolean",
    "description": "是否启用粘性布局 默认值：false"
  },
  "var-tabs/offset-top": {
    "type": "string | number",
    "description": "吸顶距离 默认值：0"
  },
  "var-tabs-items/active.sync": {
    "type": "string | number",
    "description": "激活的选项卡的名字 默认值：-"
  },
  "var-tabs-items/can-swipe": {
    "type": "boolean",
    "description": "是否允许滑动切换 默认值：true"
  },
  "var-tabs-items/loop": {
    "type": "boolean",
    "description": "是否允许循环切换 默认值：false"
  },
  "var-time-picker/v-model": {
    "type": "string",
    "description": "被选择的时间（ISO 8601 格式，`HH:mm` 或 `HH:mm:ss`） 默认值：-"
  },
  "var-time-picker/format": {
    "type": "string",
    "description": "选择器时间格式，可选值为 `ampm 24hr` 默认值：ampm"
  },
  "var-time-picker/color": {
    "type": "string",
    "description": "选择器的颜色 默认值：#2979ff"
  },
  "var-time-picker/header-color": {
    "type": "string",
    "description": "标题背景色。如果未指定，将使用由 color 属性或默认颜色。 默认值：#2979ff"
  },
  "var-time-picker/shadow": {
    "type": "boolean",
    "description": "是否添加阴影 默认值：false"
  },
  "var-time-picker/min": {
    "type": "string",
    "description": "允许的最小时间（ISO 8601格式） 默认值：-"
  },
  "var-time-picker/max": {
    "type": "string",
    "description": "允许的最大时间（ISO 8601格式） 默认值：-"
  },
  "var-time-picker/allowed-time": {
    "type": "AllowedTime",
    "description": "限制可以选择的时间 默认值：-"
  },
  "var-time-picker/readonly": {
    "type": "boolean",
    "description": "是否只读 默认值：false"
  },
  "var-time-picker/use-seconds": {
    "type": "boolean",
    "description": "是否显示秒 默认值：false"
  },
  "var-uploader/v-model": {
    "type": "VarFile[]",
    "description": "文件列表 默认值：[]"
  },
  "var-uploader/accept": {
    "type": "string",
    "description": "接受的文件类型，与原生属性一致 默认值：image/*"
  },
  "var-uploader/capture": {
    "type": "string",
    "description": "获取文件方式，与原生属性一致 默认值：-"
  },
  "var-uploader/multiple": {
    "type": "boolean",
    "description": "是否多选文件 默认值：false"
  },
  "var-uploader/readonly": {
    "type": "boolean",
    "description": "是否只读 默认值：false"
  },
  "var-uploader/disabled": {
    "type": "boolean",
    "description": "是否禁用 默认值：false"
  },
  "var-uploader/removable": {
    "type": "boolean",
    "description": "是否可以删除 默认值：true"
  },
  "var-uploader/maxlength": {
    "type": "string | number",
    "description": "最大文件个数 默认值：-"
  },
  "var-uploader/maxsize": {
    "type": "string | number",
    "description": "最大文件大小 默认值：-"
  },
  "var-uploader/previewed": {
    "type": "boolean",
    "description": "是否允许预览 默认值：true"
  },
  "var-uploader/ripple": {
    "type": "boolean",
    "description": "是否开启水波纹 默认值：true"
  },
  "var-uploader/validate-trigger": {
    "type": "ValidateTriggers[]",
    "description": "触发验证的时机， 可选值为 `onChange` `onRemove` 默认值：['onChange', 'onRemove']"
  },
  "var-uploader/rules": {
    "type": "Array<(v: VarFile, u: VarFileUtils) => any>",
    "description": "验证规则，返回 `true` 表示验证通过，其余的值则转换为文本作为用户提示 默认值：-"
  }
}