Notify 消息提示

引入

  1. import Vue from 'vue';
  2. import { Notify } from 'vant';
  3. Vue.use(Notify);

代码演示

基础用法

  1. Notify('通知内容');

通知类型

支持primarysuccesswarningdanger四种通知类型,默认为danger

  1. // 主要通知
  2. Notify({ type: 'primary', message: '通知内容' });
  3. // 成功通知
  4. Notify({ type: 'success', message: '通知内容' });
  5. // 危险通知
  6. Notify({ type: 'danger', message: '通知内容' });
  7. // 警告通知
  8. Notify({ type: 'warning', message: '通知内容' });

自定义通知

自定义消息通知的颜色和展示时长

  1. Notify({
  2. message: '自定义颜色',
  3. color: '#ad0000',
  4. background: '#ffe1e1'
  5. });
  6. Notify({
  7. message: '自定义时长',
  8. duration: 1000
  9. });

组件内调用

引入 Notify 组件后,会自动在 Vue 的 prototype 上挂载 $notify 方法,便于在组件内调用。

  1. export default {
  2. mounted() {
  3. this.$notify('提示文案');
  4. }
  5. }

API

方法

方法名说明参数返回值
Notify展示提示options | messagenotify 实例
Notify.clear关闭提示-void
Notify.setDefaultOptions修改默认配置,对所有 Notify 生效optionsvoid
Notify.resetDefaultOptions重置默认配置,对所有 Notify 生效-void

Options

参数说明类型默认值
type v2.1.6类型,可选值为 primary success warningstringdanger
message展示文案,支持通过\n换行string-
duration展示时长(ms),值为 0 时,notify 不会消失number3000
color字体颜色string#fff
background背景颜色string-
className自定义类名any-
onClick点击时的回调函数Function-
onOpened完全展示后的回调函数Function-
onClose关闭时的回调函数Function-

Notify 消息通知 - 图1