【vant】Toast 轻提示的简单使用

这个文档是讲述 vant 插件的 Toast 轻提示简单上手使用

前提:确保已经下载好了 vant 插件

在需要使用的页面引入

import Vue from 'vue'
import {Toast} from 'vant'

加载该中间件

Vue.use(Toast)

在 created 钩子函数内直接使用

const toast = Toast.loading({
  message: '加载中...',	//加载的时候显示的文字
  duration:0,						//展示时长(ms),值为 0 时,toast 不会消失
  overlay:true, 				//是否显示遮罩层
  forbidClick: true			//是否禁止背景点击
});

在达到某种条件(数据加载完毕后)再调用方法关闭即可

if(this.cinemaList.length > 0 ){
  // console.log("直接使用缓存vuex的数据...")
  toast.clear()
}else{
  this.getCinemaActions(this.cityId).then(res=>{
    toast.clear()
  })
}

以上就是本人项目中的简单使用,更多功能请参考 vant 官网:

vant toast

Logo

前往低代码交流专区

更多推荐