当前位置:   article > 正文

解决element ui 消息提示重叠问题_this.$notify显示多条信息

this.$notify显示多条信息
  data() {
      return {
        notifyPromise:Promise.resolve(),
        }
  }
// 消息循环提醒
      notify(title,msg) {
        this.notifyPromise = this.notifyPromise.then(this.$nextTick).then(()=>{
          this.$notify({
            type: 'warning',
            title: title,
            message: msg,
            dangerouslyUseHTMLString: true,
            duration: 4000,
          });
        })
      },
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/132362
推荐阅读
相关标签
  

闽ICP备14008679号