共1个回答
EC
游客ecqXMk
$notify方法需要传入一个对象作为参数,如:
this.$notify({
message: 'Welcome',
type: 'success'
})
详细的参数如下:
key | 类型 | 默认值 | 描述 |
---|---|---|---|
message | String | -- | 通知内容 |
title | String | -- | 通知标题 |
icon | String | -- | 通知显示的图标 |
verticalAlign | String | 'top' | 垂直对齐,可选 top/bottom |
horizontalAlign | String | 'center' | 水平对齐,可选right/ center/left |
type | String | 'info' | 类型,可选info/warning/danger/success/primary |
timeout | Number | 5000 | 持续时间 |
timestamp | Date | new Date() | 创建时的时间戳 |
component | [Object, Function] | -- | 替代默认的显示组件 |
showClose | Boolean | true | 是否显示关闭按钮 |
closeOnClick | Boolean | true | 是否点击时关闭 |
clickHandler | Function | -- | 点击时的回调函数 |
回答问题