mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-05 13:39:40 +08:00
1.1 KiB
1.1 KiB
#### 确认对话框
使用 `confirm()` 可以快捷地弹出确认框。
#### Confirmation modal dialog
To use `confirm()` to popup a confirmation modal dialog.
<template>
<div>
<a-button @click="showConfirm">
Confirm
</a-button>
<a-button @click="showDeleteConfirm" type="dashed">
Delete
</a-button>
</div>
</template>
<script>
export default {
methods: {
showConfirm() {
this.$confirm({
title: 'Do you Want to delete these items?',
content: 'Some descriptions',
onOk() {
console.log('OK');
},
onCancel() {
console.log('Cancel');
},
class: 'test',
});
},
showDeleteConfirm() {
this.$confirm({
title: 'Are you sure delete this task?',
content: 'Some descriptions',
okText: 'Yes',
okType: 'danger',
cancelText: 'No',
onOk() {
console.log('OK');
},
onCancel() {
console.log('Cancel');
},
});
},
}
}
</script>