2020
11-11
11-11
使用Vant完成通知栏Notify的提示操作
效果:代码展示:<template><!--通知消息提示--><divid="notify"><van-buttontype="primary"@click="toNotify"class="btn">顶部通知</van-button></div></template><script>exportdefault{data(){return{msg:''}},methods:{toNotify(){this.$notify({message:'我是提示的notify',background:'pink',duration:1000})}},mounted(){}}</script><stylescoped="scoped">.btn{margin-t...
继续阅读 >