需要在element-ui中按需導入
Vue.prototype.$message = Message
Vue.prototype.$confirm = MessageBox.confirm
然后在刪除方法中加入下面代碼就行
/*提示消息*/
const confirmResult = await this.$confirm('此操作將永久刪除該職位, 是否繼續?', '提示', {
confirmButtonText: '確定',
cancelButtonText: '取消',
type: 'warning'
}).catch(err => err)
/*如果用戶確認打印confirm,如果用戶取消顯示cancel*/
if (confirmResult !== 'confirm') {
return this.$message.info('已取消刪除!')
}
// console.log('確認了刪除')