**
微信小程序搭配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文件代码
<van-notify id="van-notify" />
app.json文件代码
"usingComponents": {
"van-notify": "@vant/weapp/notify/index"
}