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()
は確認のメッセージを表示とキャンセルボタン、OKボタンを表示するメソッドです。
このメソッドはdialogs
moduleの一部です。
confirm()
はグローバルに利用できます。アプリ上のどこからでも呼び出すことが可能です。
confirm('Your message')
.then(result => {
console.log(result);
});
confirm({
title: "Your title",
message: "Your message",
okButtonText: "Your OK button text",
cancelButtonText: "Your Cancel text"
}).then(result => {
console.log(result);
});