

當刪除用戶時,有時需要彈出一些確定信息,一般有兩種形式:提示框和確認框
this.$message({ message: '確定刪除該用戶?', type: 'warning' })
this.$confirm('將刪除該用戶, 是否確定?', '提示', { confirmButtonText: '確定', cancelButtonText: '取消', type: 'warning' }).then(() => { console.log(111); }).catch(() => { this.$message({ type: 'info', message: '已取消刪除' }); });
在confirm確認框中,在點擊確定時,若是需要請求接口從數據庫中刪除,直接在then中寫對應的請求就好,
