ConfirmDialog

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);
});
Contributors