關於element-ui Notification 多次調用重疊問題


按照官網多次調用會出現這種問題

 

 

 

修改之后

data() {
    return {
      notifyPromise: Promise.resolve()
    }
},
methods: {
    notify(msg) {
      this.notifyPromise =     this.notifyPromise.then(this.$nextTick).then(()=>{
        this.$notify({
          title: "標題",
          message: msg,
          dangerouslyUseHTMLString: true,
          duration: 0,
        })
      })
    },
  }


    

這樣多次調用即完美解決


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM