vue中$message與$confirm


 

 當刪除用戶時,有時需要彈出一些確定信息,一般有兩種形式:提示框和確認框

        this.$message({
          message: '確定刪除該用戶?',
          type: 'warning'
        })
       this.$confirm('將刪除該用戶, 是否確定?', '提示', {
          confirmButtonText: '確定',
          cancelButtonText: '取消',
          type: 'warning'
        }).then(() => {
          console.log(111);
        }).catch(() => {
          this.$message({
            type: 'info',
            message: '已取消刪除'
          });
        });

在confirm確認框中,在點擊確定時,若是需要請求接口從數據庫中刪除,直接在then中寫對應的請求就好,


免責聲明!

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



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