Message 消息提示
全局展示操作反馈信息。
何时使用
- 可提供成功、警告和错误等反馈信息。
- 顶部居中显示并自动消失,是一种不打断用户操作的轻量级提示方式。
代码示例
基本用法
不同状态
API
参数 | 说明 | 类型 | 默认值 |
---|---|---|---|
type | 消息类型,有success 、info 、warning 、error 四种 | string | info |
msg | 消息内容 | string | - |
position | 消息位 | MessagePosition | top-right |
autoClose | 消息显示时间,单位秒 | number | 3 |
MessagePosition
type MessagePosition =
| "top-left"
| "top-right"
| "top-center"
| "bottom-left"
| "bottom-right"
| "bottom-center";