vue this.$confirm 自定义三个按钮 代码
时间: 2023-12-31 08:05:56 浏览: 398
自定义的confirm窗口
可以使用Element UI的Dialog组件来自定义三个按钮的confirm弹窗。
首先,在需要使用confirm弹窗的组件中引入Dialog组件和Button组件:
```javascript
import { Dialog, Button } from 'element-ui';
```
然后,在该组件的methods中定义一个方法,用于自定义confirm弹窗:
```javascript
methods: {
myConfirm() {
Dialog.confirm({
title: '提示',
message: '确定要执行该操作吗?',
customClass: 'my-confirm',
showCancelButton: true,
showConfirmButton: false,
showClose: false,
cancelButtonText: '取消',
cancelButtonClass: 'my-cancel-button',
closeOnClickModal: false,
closeOnPressEscape: false,
beforeClose: (action, instance, done) => {
if (action === 'cancel') {
done();
} else {
// 执行确认操作
done();
}
}
});
}
}
```
在myConfirm方法中,使用Dialog.confirm方法来创建一个confirm弹窗。通过传递一些参数,可以自定义弹窗的样式和功能:
- title:弹窗标题
- message:弹窗内容
- customClass:自定义弹窗类名
- showCancelButton:是否显示取消按钮
- showConfirmButton:是否显示确认按钮
- showClose:是否显示关闭按钮
- cancelButtonText:取消按钮文本
- cancelButtonClass:自定义取消按钮类名
- closeOnClickModal:是否允许点击弹窗外部关闭弹窗
- closeOnPressEscape:是否允许按下ESC键关闭弹窗
- beforeClose:弹窗关闭前的回调函数,可以在其中执行确认操作
在beforeClose回调函数中,可以根据用户操作的结果来执行相应的操作,例如调用API接口执行删除操作。
最后,在页面中使用Button组件来触发myConfirm方法即可:
```html
<template>
<Button type="warning" @click="myConfirm">删除</Button>
</template>
```
这样就可以自定义三个按钮的confirm弹窗了。
阅读全文