美文网首页前端
vue+element-ui notify组件的使用小优化

vue+element-ui notify组件的使用小优化

作者: 孙二柯 | 来源:发表于2018-11-19 11:23 被阅读0次

    element-ui中的notify没有设置每次弹出的时间间隔,如果前端的点击事件不加以控制的话,会一直弹出多个notify。在API中notify有一个close()方法,利用这个可以控制每次只会弹出一个notify。


    效果
    notify() {
        if(this.notifyInstance) {
            this.notifyInstance.close();
        }
         this.notifyInstance=this.$notify({
              title: '警告',
              message: '这是一条警告的提示消息',
              type: 'warning'
             });
      
    }
    

    相关文章

      网友评论

        本文标题:vue+element-ui notify组件的使用小优化

        本文链接:https://www.haomeiwen.com/subject/nhuofqtx.html