使用Vant完成通知栏Notify的提示操作
效果:
代码展示:
顶部通知
.btn{ margin-top: 100px; }
补充知识:vantweapp引入notify消息提示组件解决importpath/to/@vant/weapp/dist/notify/notify和‘selectComponent‘ of undefined
**
微信小程序搭配vantweapp引入notify消息提示组件
/path/to/@vant/weapp/dist/notify/notify未找到
‘selectComponent‘ of undefined报错
解决办法:
** import引入相对路径
Notify({ type: ‘success', message: ‘通知内容' }); //放入事件中对应js文件代码:
import Notify from '../../miniprogram_npm/@vant/weapp/notify/notify'; Page({ data: {}, //btnSub是事件名 btnSub() { Notify({ type: 'success', message: '通知'}); }})
wxml文件代码
app.json文件代码
"usingComponents": { "van-notify": "@vant/weapp/notify/index"}
【使用Vant完成通知栏Notify的提示操作】以上这篇使用Vant完成通知栏Notify的提示操作就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
推荐阅读
- 由浅入深理解AOP
- 【译】20个更有效地使用谷歌搜索的技巧
- mybatisplus如何在xml的连表查询中使用queryWrapper
- MybatisPlus|MybatisPlus LambdaQueryWrapper使用int默认值的坑及解决
- MybatisPlus使用queryWrapper如何实现复杂查询
- iOS中的Block
- Linux下面如何查看tomcat已经使用多少线程
- 使用composer自动加载类文件
- android|android studio中ndk的使用
- 使用协程爬取网页,计算网页数据大小