2018-08-11 20:51:59 +08:00
..
2018-08-11 20:51:59 +08:00
2018-08-11 20:51:59 +08:00
2018-08-11 20:51:59 +08:00
2018-08-11 20:51:59 +08:00
2018-08-11 20:51:59 +08:00

Notify 消息提示

使用指南

在 index.json 中引入组件

{
  "usingComponents": {
    "van-notify": "path/to/zanui-weapp/dist/notify/index"
  }
}

代码演示

基础用法

const Notify = require('path/to/zanui-weapp/dist/notify/index');

Notify('通知内容')
<van-notify id="van-notify" />

自定义配置

Notify({
  text: '通知内容',
  duration: 1000,
  selector: '#custom-selector',
  backgroundColor: '#38f'
});
<van-notify id="custom-selector" />

API

参数 说明 类型 默认值
text 展示文案 String -
duration 持续时间 Number 3000
selector 自定义选择器 String van-notify
color 字体颜色 String #fff
backgroundColor 背景色 String #e64340