Notification 通知

悬浮出现在页面角落,显示全局的通知提醒消息。

基本用法

适用性广泛的通知栏

Notification 通知 - 图1

Notification 组件提供通知功能,Element 注册了$notify方法,接收一个options字面量参数,在最简单的情况下,你可以设置title字段和message字段,用于设置通知的标题和正文。默认情况下,经过一段时间后 Notification 组件会自动关闭,但是通过设置duration,可以控制关闭的时间间隔,特别的是,如果设置为0,则不会自动关闭。注意:duration接收一个Number,单位为毫秒,默认为4500

  1. <template>
  2. <el-button
  3. plain
  4. @click="open1">
  5. 可自动关闭
  6. </el-button>
  7. <el-button
  8. plain
  9. @click="open2">
  10. 不会自动关闭
  11. </el-button>
  12. </template>
  13. <script>
  14. export default {
  15. methods: {
  16. open1() {
  17. const h = this.$createElement;
  18. this.$notify({
  19. title: '标题名称',
  20. message: h('i', { style: 'color: teal'}, '这是提示文案这是提示文案这是提示文案这是提示文案这是提示文案这是提示文案这是提示文案这是提示文案')
  21. });
  22. },
  23. open2() {
  24. this.$notify({
  25. title: '提示',
  26. message: '这是一条不会自动关闭的消息',
  27. duration: 0
  28. });
  29. }
  30. }
  31. }
  32. </script>

带有倾向性

带有 icon,常用来显示「成功、警告、消息、错误」类的系统消息

Notification 通知 - 图2

Element 为 Notification 组件准备了四种通知类型:success, warning, info, error。通过type字段来设置,除此以外的值将被忽略。同时,我们也为 Notification 的各种 type 注册了方法,可以在不传入type字段的情况下像open3open4那样直接调用。

  1. <template>
  2. <el-button
  3. plain
  4. @click="open1">
  5. 成功
  6. </el-button>
  7. <el-button
  8. plain
  9. @click="open2">
  10. 警告
  11. </el-button>
  12. <el-button
  13. plain
  14. @click="open3">
  15. 消息
  16. </el-button>
  17. <el-button
  18. plain
  19. @click="open4">
  20. 错误
  21. </el-button>
  22. </template>
  23. <script>
  24. export default {
  25. methods: {
  26. open1() {
  27. this.$notify({
  28. title: '成功',
  29. message: '这是一条成功的提示消息',
  30. type: 'success'
  31. });
  32. },
  33. open2() {
  34. this.$notify({
  35. title: '警告',
  36. message: '这是一条警告的提示消息',
  37. type: 'warning'
  38. });
  39. },
  40. open3() {
  41. this.$notify.info({
  42. title: '消息',
  43. message: '这是一条消息的提示消息'
  44. });
  45. },
  46. open4() {
  47. this.$notify.error({
  48. title: '错误',
  49. message: '这是一条错误的提示消息'
  50. });
  51. }
  52. }
  53. }
  54. </script>

自定义弹出位置

可以让 Notification 从屏幕四角中的任意一角弹出

Notification 通知 - 图3

使用position属性定义 Notification 的弹出位置,支持四个选项:top-righttop-leftbottom-rightbottom-left,默认为top-right

  1. <template>
  2. <el-button
  3. plain
  4. @click="open1">
  5. 右上角
  6. </el-button>
  7. <el-button
  8. plain
  9. @click="open2">
  10. 右下角
  11. </el-button>
  12. <el-button
  13. plain
  14. @click="open3">
  15. 左下角
  16. </el-button>
  17. <el-button
  18. plain
  19. @click="open4">
  20. 左上角
  21. </el-button>
  22. </template>
  23. <script>
  24. export default {
  25. methods: {
  26. open1() {
  27. this.$notify({
  28. title: '自定义位置',
  29. message: '右上角弹出的消息'
  30. });
  31. },
  32. open2() {
  33. this.$notify({
  34. title: '自定义位置',
  35. message: '右下角弹出的消息',
  36. position: 'bottom-right'
  37. });
  38. },
  39. open3() {
  40. this.$notify({
  41. title: '自定义位置',
  42. message: '左下角弹出的消息',
  43. position: 'bottom-left'
  44. });
  45. },
  46. open4() {
  47. this.$notify({
  48. title: '自定义位置',
  49. message: '左上角弹出的消息',
  50. position: 'top-left'
  51. });
  52. }
  53. }
  54. }
  55. </script>

带有偏移

让 Notification 偏移一些位置

Notification 通知 - 图4

Notification 提供设置偏移量的功能,通过设置 offset 字段,可以使弹出的消息距屏幕边缘偏移一段距离。注意在同一时刻,所有的 Notification 实例应当具有一个相同的偏移量。

  1. <template>
  2. <el-button
  3. plain
  4. @click="open">
  5. 偏移的消息
  6. </el-button>
  7. </template>
  8. <script>
  9. export default {
  10. methods: {
  11. open() {
  12. this.$notify({
  13. title: '偏移',
  14. message: '这是一条带有偏移的提示消息',
  15. offset: 100
  16. });
  17. }
  18. }
  19. }
  20. </script>

使用 HTML 片段

message 属性支持传入 HTML 片段

Notification 通知 - 图5

dangerouslyUseHTMLString属性设置为 true,message 就会被当作 HTML 片段处理。

  1. <template>
  2. <el-button
  3. plain
  4. @click="open">
  5. 使用 HTML 片段
  6. </el-button>
  7. </template>
  8. <script>
  9. export default {
  10. methods: {
  11. open() {
  12. this.$notify({
  13. title: 'HTML 片段',
  14. dangerouslyUseHTMLString: true,
  15. message: '<strong>这是 <i>HTML</i> 片段</strong>'
  16. });
  17. }
  18. }
  19. }
  20. </script>

message 属性虽然支持传入 HTML 片段,但是在网站上动态渲染任意 HTML 是非常危险的,因为容易导致 XSS 攻击。因此在 dangerouslyUseHTMLString 打开的情况下,请确保 message 的内容是可信的,永远不要将用户提交的内容赋值给 message 属性。

隐藏关闭按钮

可以不显示关闭按钮

Notification 通知 - 图6

showClose属性设置为false即可隐藏关闭按钮。

  1. <template>
  2. <el-button
  3. plain
  4. @click="open">
  5. 隐藏关闭按钮
  6. </el-button>
  7. </template>
  8. <script>
  9. export default {
  10. methods: {
  11. open() {
  12. this.$notify.success({
  13. title: 'Info',
  14. message: '这是一条没有关闭按钮的消息',
  15. showClose: false
  16. });
  17. }
  18. }
  19. }
  20. </script>

全局方法

Element 为 Vue.prototype 添加了全局方法 $notify。因此在 vue instance 中可以采用本页面中的方式调用 Notification。

单独引用

单独引入 Notification:

  1. import { Notification } from 'element-ui';

此时调用方法为 Notification(options)。我们也为每个 type 定义了各自的方法,如 Notification.success(options)。并且可以调用 Notification.closeAll() 手动关闭所有实例。

Options

参数说明类型可选值默认值
title标题string
message说明文字string/Vue.VNode
dangerouslyUseHTMLString是否将 message 属性作为 HTML 片段处理booleanfalse
type主题样式,如果不在可选值内将被忽略stringsuccess/warning/info/error
iconClass自定义图标的类名。若设置了 type,则 iconClass 会被覆盖string
customClass自定义类名string
duration显示时间, 毫秒。设为 0 则不会自动关闭number4500
position自定义弹出位置stringtop-right/top-left/bottom-right/bottom-lefttop-right
showClose是否显示关闭按钮booleantrue
onClose关闭时的回调函数function
onClick点击 Notification 时的回调函数function
offset偏移的距离,在同一时刻,所有的 Notification 实例应当具有一个相同的偏移量number0

方法

调用 Notificationthis.$notify 会返回当前 Notification 的实例。如果需要手动关闭实例,可以调用它的 close 方法。

方法名说明
close关闭当前的 Notification