• 確認メッセージをモーダルで表示し、ユーザーに対して確認を行うロジックを生成します。

    Returns {
        $confirm: (
            param: {
                message?: string;
                messageI18nKey?: string;
                okText?: string;
                okTextI18nKey?: string;
                title?: string;
                titleI18nKey?: string;
            },
        ) => Promise<boolean>;
    }

    • $confirm: (
          param: {
              message?: string;
              messageI18nKey?: string;
              okText?: string;
              okTextI18nKey?: string;
              title?: string;
              titleI18nKey?: string;
          },
      ) => Promise<boolean>
    const { $confirm } = Mdc.useConfirm();
    $confirm({
    title: '確認タイトル',
    message: '確認メッセージです',
    okText: '確認'
    }).then(ok => {
    if (ok) {
    console.log("「確認」がクリックされました");
    } else {
    console.log("「キャンセル」がクリックされました");
    }
    });