欢迎来到代码驿站!

vue

当前位置:首页 > 网页前端 > vue

使用Vant完成通知栏Notify的提示操作

时间:2021-10-22 09:08:33|栏目:vue|点击:

效果:

代码展示:

<template>
 <!-- 通知消息提示 -->
 <div id="notify">
  <van-button type="primary" @click="toNotify" class="btn">顶部通知</van-button>
 </div>
</template>
<script>
 export default{
 data(){
  return{
  msg:''
  }
 },
 methods:{
  toNotify(){
  this.$notify({
   message:'我是提示的notify',
   background:'pink',
   duration: 1000
  })
  }
 },
 mounted() {
 
 }
 }
</script>
<style scoped="scoped">
 .btn{
 margin-top: 100px;
 }
</style>

补充知识: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文件代码

<van-notify id="van-notify" />

app.json文件代码

"usingComponents": {
 "van-notify": "@vant/weapp/notify/index"
}

上一篇:vue_drf实现短信验证码

栏    目:vue

下一篇:Vue项目全局配置页面缓存之按需读取缓存的实现详解

本文标题:使用Vant完成通知栏Notify的提示操作

本文地址:http://www.codeinn.net/misctech/180827.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有