1、main.js引入vant后,页面按官方文档写入Toast发现报错(Toast.loading

Toast.loading({
     message: '登录中...',
     forbidClick: true,
     duration: 1000,
});

2、正确写法,使用(this.$toast.loading)就正确了。

this.$toast.loading({
     message: '登录中...',
     forbidClick: true,
     duration: 1000,
});

Logo

前往低代码交流专区

更多推荐