{
  "m-auto-complete/v-model": {
    "type": "string | number",
    "description": "绑定的值 默认值：**-**"
  },
  "m-auto-complete/options": {
    "type": "{ label: any, value: any }[]",
    "description": "自动补全选项列表 默认值：**[]**"
  },
  "m-auto-complete/label": {
    "type": "string",
    "description": "标签名 默认值：**-**"
  },
  "m-auto-complete/placeholder": {
    "type": "string",
    "description": "占位符 默认值：**-**"
  },
  "m-auto-complete/type": {
    "type": "string",
    "description": "输入框类型, 可选值为 `text` `password` `number` 默认值：**text**"
  },
  "m-auto-complete/size": {
    "type": "string",
    "description": "输入框尺寸, 可选值为 `normal` `small` `mini` 默认值：**normal**"
  },
  "m-auto-complete/maxlength": {
    "type": "string | number",
    "description": "最大长度 默认值：**-**"
  },
  "m-auto-complete/textarea": {
    "type": "boolean",
    "description": "是否是文本域 默认值：**false**"
  },
  "m-auto-complete/rows": {
    "type": "string | number",
    "description": "文本域的显示行数 默认值：**5**"
  },
  "m-auto-complete/readonly": {
    "type": "boolean",
    "description": "是否只读 默认值：**false**"
  },
  "m-auto-complete/disabled": {
    "type": "boolean",
    "description": "是否禁用 默认值：**false**"
  },
  "m-auto-complete/clearable": {
    "type": "boolean",
    "description": "是否可清除 默认值：**false**"
  },
  "m-auto-complete/resize": {
    "type": "boolean",
    "description": "文本域是否可以拖动调整尺寸 默认值：**false**"
  },
  "m-auto-complete/validate-trigger": {
    "type": "AutoCompleteValidateTrigger[]",
    "description": "触发验证的时机，可选值为 `onChange` `onClick` `onClear` `onInput` `onChange` 默认值：**['onInput', 'onChange', onClear']**"
  },
  "m-auto-complete/rules": {
    "type": "Array<(v: string | number) => any>",
    "description": "验证规则，返回 `true` 表示验证通过，其余的值则转换为文本作为用户提示 默认值：**-**"
  },
  "m-back-top/right": {
    "type": "string | number",
    "description": "触发器距离页面右侧的距离 默认值：**-**"
  },
  "m-back-top/bottom": {
    "type": "string | number",
    "description": "触发器距离页面底部的距离 默认值：**-**"
  },
  "m-back-top/target": {
    "type": "string | object | Window",
    "description": "触发滚动的对象 默认值：**-**"
  },
  "m-back-top/visibility-height": {
    "type": "string | number",
    "description": "触发器显示的滚动距离 默认值：**200**"
  },
  "m-back-top/duration": {
    "type": "number",
    "description": "回到顶部过渡时间（ms） 默认值：**300**"
  },
  "m-breadcrumb/separator": {
    "type": "string",
    "description": "分隔符 默认值：**/**"
  },
  "m-breadcrumb-item/separator": {
    "type": "string",
    "description": "分隔符 默认值：**-**"
  },
  "m-button/type": {
    "type": "string",
    "description": "类型，可选值为 `default` `primary` `info` `success` `warning` `error` 默认值：**default**"
  },
  "m-button/size": {
    "type": "string",
    "description": "尺寸，可选值为 `normal` `mini` `small` `large` 默认值：**normal**"
  },
  "m-button/loading": {
    "type": "boolean",
    "description": "加载状态 默认值：**false**"
  },
  "m-button/loading-size": {
    "type": "number | string",
    "description": "加载图标的尺寸 默认值：**-**"
  },
  "m-button/round": {
    "type": "boolean",
    "description": "是否是圆形按钮 默认值：**false**"
  },
  "m-button/block": {
    "type": "boolean",
    "description": "是否是块级元素 默认值：**false**"
  },
  "m-button/text": {
    "type": "boolean",
    "description": "是否是文字按钮 默认值：**false**"
  },
  "m-button/outline": {
    "type": "boolean",
    "description": "是否使用外边框 默认值：**false**"
  },
  "m-button/disabled": {
    "type": "boolean",
    "description": "禁用状态 默认值：**false**"
  },
  "m-button/ripple": {
    "type": "boolean",
    "description": "是否使用水波纹 默认值：**true**"
  },
  "m-checkbox/v-model": {
    "type": "any",
    "description": "绑定的值 默认值：**false**"
  },
  "m-checkbox/checked-value": {
    "type": "any",
    "description": "选中状态的值 默认值：**true**"
  },
  "m-checkbox/unchecked-value": {
    "type": "any",
    "description": "未选中状态的值 默认值：**false**"
  },
  "m-checkbox/label": {
    "type": "string | number",
    "description": "标签名 默认值：**-**"
  },
  "m-checkbox/size": {
    "type": "string",
    "description": "复选框尺寸, 可选值为 `normal` `small` `mini` 默认值：**normal**"
  },
  "m-checkbox/disabled": {
    "type": "boolean",
    "description": "是否禁用 默认值：**false**"
  },
  "m-checkbox/readonly": {
    "type": "boolean",
    "description": "是否只读 默认值：**false**"
  },
  "m-checkbox/ripple": {
    "type": "boolean",
    "description": "是否开启水波纹 默认值：**true**"
  },
  "m-checkbox/validate-trigger": {
    "type": "CheckboxValidateTrigger[]",
    "description": "触发验证的时机，可选值为 `onChange` `onClick` 默认值：**['onChange']**"
  },
  "m-checkbox/rules": {
    "type": "Array<(value: any) => any>",
    "description": "验证规则，返回 `true` 表示验证通过，其余的值则转换为文本作为用户提示 默认值：**-**"
  },
  "m-checkbox-group/v-model": {
    "type": "any",
    "description": "绑定的值 默认值：**-**"
  },
  "m-checkbox-group/label": {
    "type": "string | number",
    "description": "标签名 默认值：**-**"
  },
  "m-checkbox-group/direction": {
    "type": "string",
    "description": "布局方向，可选值为 `horizontal` `vertical` 默认值：**horizontal**"
  },
  "m-checkbox-group/rules": {
    "type": "Array<(value: any) => any>",
    "description": "验证规则，返回 `true` 表示验证通过，其余的值则转换为文本作为用户提示 默认值：**-**"
  },
  "m-col/span": {
    "type": "string | number",
    "description": "栅格列数 默认值：**24**"
  },
  "m-col/offset": {
    "type": "string",
    "description": "偏移列数 默认值：**0**"
  },
  "m-col/xs": {
    "type": "string | string | ColSizeDescriptor",
    "description": "`<768px` 响应式栅格数或栅格尺寸描述对象 默认值：**-**"
  },
  "m-col/sm": {
    "type": "string | string | ColSizeDescriptor",
    "description": "`>=768px` 响应式栅格数或栅格尺寸描述对象 默认值：**-**"
  },
  "m-col/md": {
    "type": "string | string | ColSizeDescriptor",
    "description": "`>=992px` 响应式栅格数或栅格尺寸描述对象 默认值：**-**"
  },
  "m-col/lg": {
    "type": "string | string | ColSizeDescriptor",
    "description": "`>=1200px` 响应式栅格数或栅格尺寸描述对象 默认值：**-**"
  },
  "m-col/xl": {
    "type": "string | string | ColSizeDescriptor",
    "description": "`>=1920px` 响应式栅格数或栅格尺寸描述对象 默认值：**-**"
  },
  "m-dialog/v-model": {
    "type": "boolean",
    "description": "是否显示对话框 默认值：**false**"
  },
  "m-dialog/title": {
    "type": "string",
    "description": "对话框标题 默认值：**提示**"
  },
  "m-dialog/message": {
    "type": "string",
    "description": "对话框内容 默认值：**-**"
  },
  "m-dialog/message-align": {
    "type": "string",
    "description": "对话框内容文字对齐方式，可选值 `center`, `left`, `right` 默认值：**left**"
  },
  "m-dialog/confirm-button": {
    "type": "boolean",
    "description": "是否显示确认按钮 默认值：**true**"
  },
  "m-dialog/cancel-button": {
    "type": "boolean",
    "description": "是否显示取消按钮 默认值：**true**"
  },
  "m-dialog/confirm-button-text": {
    "type": "string",
    "description": "确认按钮文字 默认值：**确认**"
  },
  "m-dialog/cancel-button-text": {
    "type": "string",
    "description": "取消按钮文字 默认值：**取消**"
  },
  "m-dialog/confirm-button-type": {
    "type": "string",
    "description": "确认按钮类型 默认值：**-**"
  },
  "m-dialog/cancel-button-type": {
    "type": "string",
    "description": "取消按钮类型 默认值：**-**"
  },
  "m-dialog/overlay": {
    "type": "boolean",
    "description": "是否显示遮罩层 默认值：**true**"
  },
  "m-dialog/overlay-class": {
    "type": "string",
    "description": "自定义遮罩层的 class 默认值：**-**"
  },
  "m-dialog/overlay-style": {
    "type": "string",
    "description": "自定义遮罩层的 style 默认值：**-**"
  },
  "m-dialog/lock-scroll": {
    "type": "boolean",
    "description": "是否禁止滚动穿透，禁止时滚动弹出层不会引发 body 的滚动 默认值：**true**"
  },
  "m-dialog/close-on-click-overlay": {
    "type": "boolean",
    "description": "是否点击遮罩层关闭弹出层 默认值：**true**"
  },
  "m-dialog/before-close": {
    "type": "(action: 用户动作, done: 关闭弹窗) => void",
    "description": "对话框关闭前回调，传入此参数会阻止对话框的自动关闭 默认值：*-*"
  },
  "m-dropdown/options": {
    "type": "DropdownOption",
    "description": "配置项数组 默认值：**[]**"
  },
  "m-dropdown/size": {
    "type": "string",
    "description": "尺寸大小，可选值为`small` `normal` `large` 默认值：**normal**"
  },
  "m-dropdown/disabled": {
    "type": "string",
    "description": "是否禁用下拉 默认值：**false**"
  },
  "m-dropdown/label-field": {
    "type": "string",
    "description": "自定义显示文本的属性名 默认值：**label**"
  },
  "m-dropdown/key-field": {
    "type": "string",
    "description": "自定义唯一标识的属性名 默认值：**key**"
  },
  "m-dropdown/children-field": {
    "type": "string",
    "description": "自定义子列表的属性名 默认值：**children**"
  },
  "m-dropdown/icon-field": {
    "type": "string",
    "description": "自定义图标的属性名 默认值：**icon**"
  },
  "m-form/readonly": {
    "type": "boolean",
    "description": "是否只读 默认值：**false**"
  },
  "m-form/disabled": {
    "type": "boolean",
    "description": "是否禁用 默认值：**false**"
  },
  "m-form-item/value": {
    "type": "any",
    "description": "验证的值 默认值：**-**"
  },
  "m-form-item/label": {
    "type": "string",
    "description": "标签名 默认值：**-**"
  },
  "m-form-item/rules": {
    "type": "Array<(v: any) => any>",
    "description": "验证规则，返回 `true` 表示验证通过，其余的值则转换为文本作为用户提示 默认值：**-**"
  },
  "m-icon/name": {
    "type": "string",
    "description": "图标名称 默认值：-"
  },
  "m-icon/size": {
    "type": "string | number",
    "description": "尺寸 默认值：-"
  },
  "m-icon/color": {
    "type": "string",
    "description": "图标颜色 默认值：-"
  },
  "m-icon/namespace": {
    "type": "string",
    "description": "图标的命名空间 默认值：m-icon"
  },
  "m-image/src": {
    "type": "string",
    "description": "图片地址 默认值：**-**"
  },
  "m-image/fit": {
    "type": "string",
    "description": "填充模式, 可选值为 `fill` `contain` `cover` `none` `scale-down` 默认值：**fill**"
  },
  "m-image/alt": {
    "type": "string",
    "description": "替代文本 默认值：**-**"
  },
  "m-image/width": {
    "type": "string | number",
    "description": "图片宽度 默认值：**-**"
  },
  "m-image/height": {
    "type": "string | number",
    "description": "图片高度 默认值：**-**"
  },
  "m-image/radius": {
    "type": "string | number",
    "description": "图片圆角 默认值：**-**"
  },
  "m-image/lazy": {
    "type": "boolean",
    "description": "是否开启懒加载 默认值：**false**"
  },
  "m-image/loading": {
    "type": "string",
    "description": "当开启懒加载时, 加载中显示的图片 默认值：**-**"
  },
  "m-image/error": {
    "type": "string",
    "description": "当开启懒加载时, 加载失败显示的图片 默认值：**-**"
  },
  "m-image/ripple": {
    "type": "boolean",
    "description": "是否开启水波 默认值：**false**"
  },
  "m-image/preview-disabled": {
    "type": "boolean",
    "description": "是否禁用预览 默认值：**true**"
  },
  "m-image/block": {
    "type": "boolean",
    "description": "是否是块级元素 默认值：**true**"
  },
  "m-input/v-model": {
    "type": "string | number",
    "description": "绑定的值 默认值：**-**"
  },
  "m-input/label": {
    "type": "string | number",
    "description": "标签名 默认值：**-**"
  },
  "m-input/placeholder": {
    "type": "string",
    "description": "占位符 默认值：**-**"
  },
  "m-input/type": {
    "type": "string",
    "description": "输入框类型, 可选值为 `text` `password` `number` 默认值：**text**"
  },
  "m-input/size": {
    "type": "string",
    "description": "输入框尺寸, 可选值为 `normal` `small` `mini` 默认值：**normal**"
  },
  "m-input/maxlength": {
    "type": "string | number",
    "description": "最大长度 默认值：**-**"
  },
  "m-input/textarea": {
    "type": "boolean",
    "description": "是否是文本域 默认值：**false**"
  },
  "m-input/rows": {
    "type": "string | number",
    "description": "文本域的显示行数 默认值：**5**"
  },
  "m-input/readonly": {
    "type": "boolean",
    "description": "是否只读 默认值：**false**"
  },
  "m-input/disabled": {
    "type": "boolean",
    "description": "是否禁用 默认值：**false**"
  },
  "m-input/clearable": {
    "type": "boolean",
    "description": "是否可清除 默认值：**false**"
  },
  "m-input/resize": {
    "type": "boolean",
    "description": "文本域是否可以拖动调整尺寸 默认值：**false**"
  },
  "m-input/validate-trigger": {
    "type": "InputValidateTrigger[]",
    "description": "触发验证的时机，可选值为 `onChange` `onClick` `onClear` `onInput` 默认值：**['onInput', 'onClear']**"
  },
  "m-input/rules": {
    "type": "Array<(v: string | number) => any>",
    "description": "验证规则，返回 `true` 表示验证通过，其余的值则转换为文本作为用户提示 默认值：**-**"
  },
  "m-list/loading": {
    "type": "boolean",
    "description": "加载状态 默认值：**false**"
  },
  "m-list/error": {
    "type": "boolean",
    "description": "错误状态 默认值：**false**"
  },
  "m-list/immediate-check": {
    "type": "boolean",
    "description": "是否在组件初始化时立刻检测位置 默认值：**true**"
  },
  "m-list/finished": {
    "type": "boolean",
    "description": "是否加载完毕 默认值：**false**"
  },
  "m-list/offset": {
    "type": "string | number",
    "description": "距离底部的触发距离 默认值：**0**"
  },
  "m-list/loading-text": {
    "type": "string",
    "description": "加载状态文字 默认值：**加载中**"
  },
  "m-list/finished-text": {
    "type": "string",
    "description": "加载完毕文字 默认值：**暂无更多**"
  },
  "m-list/error-text": {
    "type": "string",
    "description": "加载失败文字 默认值：**加载失败，点击重试**"
  },
  "m-loading/loading": {
    "type": "boolean",
    "description": "加载状态 默认值：**false**"
  },
  "m-loading/size": {
    "type": "string | number",
    "description": "尺寸 默认值：**-**"
  },
  "m-loading/color": {
    "type": "boolean",
    "description": "颜色 默认值：**-**"
  },
  "m-loading/rotate": {
    "type": "boolean",
    "description": "是否开启旋转动画 默认值：**true**"
  },
  "m-menu/options": {
    "type": "MenuOption[]",
    "description": "菜单配置项 默认值：**[]**"
  },
  "m-menu/expanded-names.sync": {
    "type": "Array",
    "description": "展开的菜单组名数组 默认值：**[]**"
  },
  "m-menu/selected-names.sync": {
    "type": "Array",
    "description": "选中的菜单项名数组 默认值：**[]**"
  },
  "m-menu/name-field": {
    "type": "string",
    "description": "自定义菜单项唯一标识属性名 默认值：**name**"
  },
  "m-menu/label-field": {
    "type": "string",
    "description": "自定义菜单项文本属性名 默认值：**label**"
  },
  "m-menu/accordion": {
    "type": "boolean",
    "description": "是否开启手风琴模式 默认值：**false**"
  },
  "m-menu/indent": {
    "type": "string | number",
    "description": "层级缩进距离 默认值：**24**"
  },
  "m-menu/multiple": {
    "type": "boolean",
    "description": "是否开启多选模式 默认值：**false**"
  },
  "m-menu-item/name": {
    "type": "string | number",
    "description": "菜单项名，唯一标识 默认值：**-**"
  },
  "m-menu-item/label": {
    "type": "string | number | Function",
    "description": "菜单项文本 默认值：**-**"
  },
  "m-menu-item/icon": {
    "type": "string | IconProps | Function",
    "description": "菜单项图标 默认值：**-**"
  },
  "m-menu-item/disabled": {
    "type": "boolean",
    "description": "是否禁用菜单项 默认值：**false**"
  },
  "m-menu-item-group/name": {
    "type": "string | number",
    "description": "菜单组名，唯一标识 默认值：**-**"
  },
  "m-menu-item-group/label": {
    "type": "string | number | Function",
    "description": "菜单组文本 默认值：**-**"
  },
  "m-menu-item-group/icon": {
    "type": "string | IconProps | Function",
    "description": "菜单组图标 默认值：**-**"
  },
  "m-menu-item-group/disabled": {
    "type": "boolean",
    "description": "是否禁用菜单组 默认值：**false**"
  },
  "m-option/label": {
    "type": "any",
    "description": "选项显示的文本 默认值：-"
  },
  "m-option/value": {
    "type": "any",
    "description": "选项绑定的值 默认值：-"
  },
  "m-option/disabled": {
    "type": "boolean",
    "description": "是否禁用 默认值：-"
  },
  "m-popover/trigger": {
    "type": "string",
    "description": "触发方式，可选值为 `click` `hover` `manual` 默认值：**hover**"
  },
  "m-popover/placement": {
    "type": "string",
    "description": "悬浮位置，可选值查看上方案例说明 默认值：**bottom**"
  },
  "m-popover/disabled": {
    "type": "boolean",
    "description": "是否禁用 默认值：**false**"
  },
  "m-popover/x": {
    "type": "number | string",
    "description": "悬浮框x轴位置的偏移量 默认值：**0**"
  },
  "m-popover/y": {
    "type": "boolean",
    "description": "悬浮框y轴位置的偏移量 默认值：**0**"
  },
  "m-popover/same-width": {
    "type": "boolean",
    "description": "是否和触发器同宽 默认值：**false**"
  },
  "m-popover/default-style": {
    "type": "boolean",
    "description": "是否带有默认样式 默认值：**true**"
  },
  "m-popup/v-model": {
    "type": "boolean",
    "description": "是否显示弹出层 默认值：**false**"
  },
  "m-popup/position": {
    "type": "string",
    "description": "弹出位置，可选值为 `top` `bottom` `right` `left` `center` 默认值：**center**"
  },
  "m-popup/overlay": {
    "type": "boolean",
    "description": "是否显示遮罩层 默认值：**true**"
  },
  "m-popup/overlay-class": {
    "type": "string",
    "description": "自定义遮罩层的class 默认值：**-**"
  },
  "m-popup/overlay-style": {
    "type": "string",
    "description": "自定义遮罩层的style 默认值：**-**"
  },
  "m-popup/lock-scroll": {
    "type": "boolean",
    "description": "是否禁止滚动穿透，禁止时滚动弹出层不会引发body的滚动 默认值：**true**"
  },
  "m-popup/close-on-click-overlay": {
    "type": "boolean",
    "description": "是否点击遮罩层关闭弹出层 默认值：**true**"
  },
  "m-radio/v-model": {
    "type": "any",
    "description": "绑定的值 默认值：**false**"
  },
  "m-radio/checked-value": {
    "type": "any",
    "description": "选中状态的值 默认值：**true**"
  },
  "m-radio/unchecked-value": {
    "type": "any",
    "description": "未选中状态的值 默认值：**false**"
  },
  "m-radio/label": {
    "type": "string | number",
    "description": "标签名 默认值：**-**"
  },
  "m-radio/size": {
    "type": "string",
    "description": "单选框尺寸, 可选值为 `normal` `small` `mini` 默认值：**normal**"
  },
  "m-radio/disabled": {
    "type": "boolean",
    "description": "是否禁用 默认值：**false**"
  },
  "m-radio/readonly": {
    "type": "boolean",
    "description": "是否只读 默认值：**false**"
  },
  "m-radio/ripple": {
    "type": "boolean",
    "description": "是否开启水波纹 默认值：**true**"
  },
  "m-radio/validate-trigger": {
    "type": "RadioValidateTrigger[]",
    "description": "触发验证的时机，可选值为 `onChange` `onClick` 默认值：**['onChange']**"
  },
  "m-radio/rules": {
    "type": "Array<(value: any) => any>",
    "description": "验证规则，返回 `true` 表示验证通过，其余的值则转换为文本作为用户提示 默认值：**-**"
  },
  "m-radio-group/v-model": {
    "type": "any",
    "description": "绑定的值 默认值：**-**"
  },
  "m-radio-group/label": {
    "type": "string | number",
    "description": "标签名 默认值：**-**"
  },
  "m-radio-group/direction": {
    "type": "string",
    "description": "布局方向，可选值为 `horizontal` `vertical` 默认值：**horizontal**"
  },
  "m-radio-group/rules": {
    "type": "Array<(value: any) => any>",
    "description": "验证规则，返回 `true` 表示验证通过，其余的值则转换为文本作为用户提示 默认值：**-**"
  },
  "m-rate/v-model": {
    "type": "string | number",
    "description": "绑定的值 默认值：**0**"
  },
  "m-rate/label": {
    "type": "string | number",
    "description": "标签名 默认值：**-**"
  },
  "m-rate/color": {
    "type": "string",
    "description": "激活时的颜色 默认值：**-**"
  },
  "m-rate/count": {
    "type": "string | number",
    "description": "显示的星星个数 默认值：**5**"
  },
  "m-rate/icon": {
    "type": "string",
    "description": "自定义图标名 默认值：**-**"
  },
  "m-rate/half": {
    "type": "boolean",
    "description": "是否使用半星 默认值：**false**"
  },
  "m-rate/size": {
    "type": "string",
    "description": "图标的尺寸, 可选值为 `normal` `small` `mini` 默认值：**normal**"
  },
  "m-rate/disabled": {
    "type": "boolean",
    "description": "是否禁用 默认值：**false**"
  },
  "m-rate/readonly": {
    "type": "boolean",
    "description": "是否只读 默认值：**false**"
  },
  "m-rate/ripple": {
    "type": "boolean",
    "description": "是否开启水波纹 默认值：**true**"
  },
  "m-rate/rules": {
    "type": "Array<(value: string | number) => any>",
    "description": "验证规则，返回 `true` 表示验证通过，其余的值则转换为文本作为用户提示 默认值：**-**"
  },
  "m-row/gutter": {
    "type": "string | number",
    "description": "列间距 默认值：**0**"
  },
  "m-row/justify": {
    "type": "string",
    "description": "水平排列方式 可选值为 `start` `end` `center` `space-around` `space-between` 默认值：**start**"
  },
  "m-row/align": {
    "type": "string",
    "description": "垂直排列方式 可选值为 `stretch` `center` `start` `end` `baseline` 默认值：**-**"
  },
  "m-select/v-model": {
    "type": "string | number | Array",
    "description": "绑定的值 默认值：**-**"
  },
  "m-select/label": {
    "type": "string",
    "description": "标签名 默认值：**-**"
  },
  "m-select/placeholder": {
    "type": "string",
    "description": "占位符 默认值：**-**"
  },
  "m-select/multiple": {
    "type": "boolean",
    "description": "是否多选 默认值：**false**"
  },
  "m-select/size": {
    "type": "string",
    "description": "选择框尺寸, 可选值为 `normal` `small` `mini` 默认值：**normal**"
  },
  "m-select/readonly": {
    "type": "boolean",
    "description": "是否只读 默认值：**false**"
  },
  "m-select/disabled": {
    "type": "boolean",
    "description": "是否禁用 默认值：**false**"
  },
  "m-select/clearable": {
    "type": "boolean",
    "description": "是否可清除 默认值：**false**"
  },
  "m-select/validate-trigger": {
    "type": "SelectValidateTrigger[]",
    "description": "触发验证的时机，可选值为 `onSelect` `onClick` `onClear` `onInput` `onTagClose` 默认值：**['onChange', 'onClear', 'onClose']**"
  },
  "m-select/rules": {
    "type": "Array<(v: any) => any>",
    "description": "验证规则，返回 `true` 表示验证通过，其余的值则转换为文本作为用户提示 默认值：**-**"
  },
  "m-skeleton/loading": {
    "type": "boolean",
    "description": "加载状态，设置为 `true` 开启骨架屏 默认值：**true**"
  },
  "m-skeleton/title": {
    "type": "boolean",
    "description": "是否显示标题 默认值：**false**"
  },
  "m-skeleton/card": {
    "type": "boolean",
    "description": "是否显示卡片 默认值：**false**"
  },
  "m-skeleton/avatar": {
    "type": "boolean",
    "description": "是否显示头像 默认值：**false**"
  },
  "m-skeleton/fullscreen": {
    "type": "boolean",
    "description": "是否开启全屏模式 默认值：**false**"
  },
  "m-skeleton/fullscreen-z-index": {
    "type": "string | number",
    "description": "全屏模式的层级 默认值：**100**"
  },
  "m-skeleton/title-width": {
    "type": "string | number",
    "description": "标题宽度 默认值：**-**"
  },
  "m-skeleton/card-height": {
    "type": "string | number",
    "description": "卡片高度 默认值：**-**"
  },
  "m-skeleton/avatar-size": {
    "type": "string | number",
    "description": "头像尺寸 默认值：**-**"
  },
  "m-skeleton/rows": {
    "type": "string | number",
    "description": "段落行数 默认值：**3**"
  },
  "m-skeleton/rows-width": {
    "type": "number[] | string[]",
    "description": "段落每一行的宽度 默认值：**[]**"
  },
  "m-space/justify": {
    "type": "string",
    "description": "水平排列方式 可选值为 `start` `end` `center` `space-around` `space-between` 默认值：**start**"
  },
  "m-space/align": {
    "type": "string",
    "description": "垂直排列方式 可选值为 `stretch` `center` `start` `end` `baseline` 默认值：**-**"
  },
  "m-space/size": {
    "type": "string | number | [string | number, string | number]",
    "description": "间距，可选值为 `mini` `small` `normal` `large` 或 `[垂直间距, 水平间距]`，支持长度单位 默认值：**normal**"
  },
  "m-space/wrap": {
    "type": "boolean",
    "description": "是否超出换行 默认值：**true**"
  },
  "m-space/direction": {
    "type": "string",
    "description": "布局方向 可选值为 `row` `column` 默认值：**row**"
  },
  "m-space/inline": {
    "type": "boolean",
    "description": "是否为行内元素 默认值：**false**"
  },
  "m-sticky/offset-top": {
    "type": "string | number",
    "description": "吸顶距离 默认值：**0**"
  },
  "m-sticky/z-index": {
    "type": "string | number",
    "description": "吸顶时的层级 默认值：**0**"
  },
  "m-sticky/css-mode": {
    "type": "boolean",
    "description": "开启原生`css sticky`模式 默认值：**false**"
  },
  "m-sticky/disabled": {
    "type": "boolean",
    "description": "禁用吸顶, 设置为`true`时, 元素会回到文档流中 默认值：**false**"
  },
  "m-swipe/loop": {
    "type": "boolean",
    "description": "是否开启循环轮播 默认值：**true**"
  },
  "m-swipe/autoplay": {
    "type": "string | number",
    "description": "自动播放间隔时间(ms) 默认值：**-**"
  },
  "m-swipe/duration": {
    "type": "string | number",
    "description": "切换过度时间 默认值：**300**"
  },
  "m-swipe/initial-index": {
    "type": "string | number",
    "description": "初始化显示的索引 默认值：**0**"
  },
  "m-swipe/indicator": {
    "type": "boolean",
    "description": "是否显示指示器 默认值：**true**"
  },
  "m-swipe/indicator-color": {
    "type": "string",
    "description": "指示器颜色 默认值：**-**"
  },
  "m-swipe/vertical": {
    "type": "boolean",
    "description": "是否开启垂直轮播 默认值：**false**"
  },
  "m-swipe/touchable": {
    "type": "boolean",
    "description": "是否可以拖动 默认值：**true**"
  },
  "m-tab/name": {
    "type": "string | number",
    "description": "标签页的名字 默认值：**index**"
  },
  "m-tab/disabled": {
    "type": "boolean",
    "description": "是否禁用标签页 默认值：**false**"
  },
  "m-tab-item/name": {
    "type": "string | number",
    "description": "视图的名字 默认值：**index**"
  },
  "m-tabs/v-model": {
    "type": "string | number",
    "description": "激活的标签页绑定的值, 优先匹配 `name`，其次是 `index` 默认值：**0**"
  },
  "m-tabs/layout-direction": {
    "type": "string",
    "description": "标签页容器的布局方向， 可选值为 `horizontal` `vertical` 默认值：**horizontal**"
  },
  "m-tabs/item-direction": {
    "type": "string",
    "description": "标签页的布局方向，可选值为 `horizontal` `vertical` 默认值：**horizontal**"
  },
  "m-tabs/active-color": {
    "type": "string",
    "description": "标签页卡激活的文字颜色 默认值：**-**"
  },
  "m-tabs/active-background": {
    "type": "string",
    "description": "标签页卡激活的背景 默认值：**-**"
  },
  "m-tabs/inactive-color": {
    "type": "string",
    "description": "标签页未激活的文字颜色 默认值：**-**"
  },
  "m-tabs/inactive-background": {
    "type": "string",
    "description": "标签页未激活的背景 默认值：**-**"
  },
  "m-tabs/disabled-color": {
    "type": "string",
    "description": "标签页禁用时的文字颜色 默认值：**-**"
  },
  "m-tabs/disabled-background": {
    "type": "string",
    "description": "标签页禁用时的背景颜色 默认值：**-**"
  },
  "m-tabs/sticky": {
    "type": "boolean",
    "description": "是否启用粘性布局 默认值：**false**"
  },
  "m-tabs/offset-top": {
    "type": "string | number",
    "description": "吸顶距离 默认值：**0**"
  },
  "m-tabs-items/v-model": {
    "type": "string | number",
    "description": "激活的视图绑定的值，优先匹配 `name`，其次是 `index` 默认值：**0**"
  },
  "m-tabs-items/can-swipe": {
    "type": "boolean",
    "description": "是否可以滑动切换 默认值：**true**"
  },
  "m-tabs-items/loop": {
    "type": "boolean",
    "description": "是否可以循环切换 默认值：**false**"
  },
  "m-tag/type": {
    "type": "string",
    "description": "类型，可选值为 `default` `primary` `info` `success` `warning` `error` 默认值：**default**"
  },
  "m-tag/size": {
    "type": "string",
    "description": "尺寸，可选值为 `normal` `mini` `small` `large` 默认值：**normal**"
  },
  "m-tag/closeable": {
    "type": "boolean",
    "description": "是否显示关闭按钮 默认值：**false**"
  },
  "m-tag/close-icon-size": {
    "type": "number | string",
    "description": "关闭按钮尺寸 默认值：**-**"
  },
  "m-tag/block": {
    "type": "boolean",
    "description": "块级标签 默认值：**false**"
  },
  "m-tag/text": {
    "type": "boolean",
    "description": "是否是文字标签 默认值：**false**"
  },
  "m-tag/outline": {
    "type": "boolean",
    "description": "是否使用外边框 默认值：**false**"
  },
  "m-tag/readonly": {
    "type": "boolean",
    "description": "只读状态 默认值：**false**"
  },
  "m-tag/disabled": {
    "type": "boolean",
    "description": "禁用状态 默认值：**false**"
  }
}