vant+vue3 Toast 的用法

需求: 后端数据还没有返回来的时候给页面加一个loading

import { showLoadingToast } from 'vant';

const toastLoading = showLoadingToast({
  message: '加载中...',
  forbidClick: true,
});

if(res.code==200){
  toastLoading.close()
}

你可能感兴趣的:(前端,javascript,开发语言)