Fixed #2675 - ConfirmDialog: closeOnEscape support

pull/2743/head
Tuğçe Küçükoğlu 2022-07-01 10:16:46 +03:00
parent a3be7c4a48
commit 6e7972acf4
1 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,6 @@
<template>
<CDialog v-model:visible="visible" :modal="true" :header="header" :blockScroll="blockScroll" :position="position" class="p-confirm-dialog"
:breakpoints="breakpoints">
:breakpoints="breakpoints" :closeOnEscape="closeOnEscape">
<i :class="iconClass" />
<span class="p-confirm-dialog-message">{{message}}</span>
<template #footer>
@ -110,6 +110,9 @@ export default {
},
autoFocusReject() {
return this.confirmation.defaultFocus === 'reject' ? true : false;
},
closeOnEscape() {
return this.confirmation ? this.confirmation.closeOnEscape : true;
}
},
components: {