vant 关闭loading
时间: 2023-07-08 13:50:40 浏览: 119
你可以使用以下代码来关闭 Vant 组件库中的 loading 动画:
```javascript
this.$toast.clear(); // 关闭所有 toast 弹窗
this.$dialog.close(); // 关闭所有 dialog 弹窗
this.$indicator.close(); // 关闭所有 loading 弹窗
```
其中,`$toast.clear()` 用于关闭 toast 弹窗,`$dialog.close()` 用于关闭 dialog 弹窗,`$indicator.close()` 用于关闭 loading 弹窗。你可以根据实际情况选择使用其中的一个或多个方法。
阅读全文