this.$confirm 自定义样式
时间: 2023-09-02 19:12:17 浏览: 141
jquery validate 验证自定义样式
这是一个Vue.js中的方法,用于显示一个确认对话框。你可以通过传递一些参数来自定义对话框的样式,例如设置modal的宽度,高度,标题等。下面是一个示例代码:
```javascript
this.$confirm('Are you sure you want to delete this item?', 'Confirmation', {
confirmButtonText: 'Delete',
cancelButtonText: 'Cancel',
type: 'warning',
customClass: 'my-confirm-box'
}).then(() => {
// delete the item
}).catch(() => {
// user cancel
});
```
在这个示例中,我们自定义了对话框的类名为 `my-confirm-box`,用于添加一些自定义样式。
阅读全文