mint-ui toast提示窗

用mint-ui做了一个简单的项目,下面简单的总结一下toast三种提示窗:

1.messagebox弹窗

        this.$messagebox({
          title: "温馨提示",
          message: "请选择续费银行",
          showConfirmButton: true
        });

2.提示窗,定时关闭

this.$toast(text:"等会关闭");

3.加载提示窗

        this.$indicator.open({
          text:'验证码发送成功',
          spinnerType: 'double-bounce'
        });
        
setTimeout(() => this.$indicator.close(), 1000);

设置一个定时器,可定时关闭

spinnerType默认是snake,可选择其他的样式

猜你喜欢

转载自blog.csdn.net/M_SSY/article/details/84340248
今日推荐