引入message
Element 注册了一个$message
方法用于调用,Message
可以接收一个字符串或一个 VNode
作为参数,它会被显示为正文内容。
Element 为 Vue.prototype
添加了全局方法 $message
。因此在 vue instance 中可以采用本页面中的方式调用 Message
单独引入:
import { Message } from 'element-ui';
此时调用方法为 Message(options)
。我们也为每个 type 定义了各自的方法,如 Message.success(options)
。并且可以调用 Message.closeAll()
手动关闭所有实例。
使用举例
。。。
options参数
参数 | 说明 | 类型 | 可选值 | 默认值 |
---|---|---|---|---|
message | 消息文字 | string / VNode | — | — |
type | 主题 | string | success/warning/info/error | info |
iconClass | 自定义图标的类名,会覆盖 type |
string | — | — |
dangerouslyUseHTMLString | 是否将 message 属性作为 HTML 片段处理 | boolean | — | false |
customClass | 自定义类名 | string | — | — |
duration | 显示时间, 毫秒。设为 0 则不会自动关闭 | number | — | 3000 |
showClose | 是否显示关闭按钮 | boolean | — | false |
center | 文字是否居中 | boolean | — | false |
onClose | 关闭时的回调函数, 参数为被关闭的 message 实例 | function | — | — |
offset | Message 距离窗口顶部的偏移量 | number | — | 20 |
手动关闭
调用 Message 或 this.$message
会返回当前 Message 的实例。如果需要手动关闭实例,可以调用它的 close 方法。