This is an overview of the most common usage of ConfirmDialog. For more information about the available properties, methods, or events, head over to the complete API documentation for ConfirmDialog.
Метод confirm()
показывает сообщение подтверждения с кнопками Cancel и OK.
Этот метод является частью модуля dialogs
.
Метод confirm()
доступен глобально. Вы можете вызывать его в любом месте вашего приложения.
confirm('Ваше сообщение')
.then(result => {
console.log(result);
});
confirm({
title: "Ваш заголовок",
message: "Ваше сообщение",
okButtonText: "Ваш текст для кнопки OK",
cancelButtonText: "Ваш текст для кнопки Cancel"
}).then(result => {
console.log(result);
});