vue提示框插件
将index.js引入项目的入口文件里
this.$notify(arg);
this.$notify.clear(); 关闭所有提示框
参数 | 类型 | 描述 | 默认值 |
---|---|---|---|
message | string | 提示框说明 | null |
title | string | 提示框标题 | null |
content | string | 提示语 | null |
duration | number | 延时关闭时间 | 4500 |
autoClose | string | 自动关闭 | true |
onClick | function | 点击提示框事件 | null |
onClose | function | 关闭提示框回调事件 | null |
position | string | 提示框出现位置 | 'top-left' |