(title: string, description: string, options?: any)
| 53 | */ |
| 54 | |
| 55 | export const MsgConfirm = (title: string, description: string, options?: any) => { |
| 56 | const defaultOptions: object = { |
| 57 | showCancelButton: true, |
| 58 | confirmButtonText: t('common.confirm'), |
| 59 | cancelButtonText: t('common.cancel'), |
| 60 | ...options, |
| 61 | } |
| 62 | return ElMessageBox.confirm(description, title, defaultOptions) |
| 63 | } |