如何添加确认按钮处理程序



有没有办法在确认按钮中添加一个处理程序(这样我就可以在用户单击确认时清除错误消息(:

{ magic.errorMessage && <SweetAlert
title="Error"
show={true}
html={magic.errorMessage}
type="error"
showCancelButton={false}
showConfirmButton={true}
onClick={() => { console.log("YES YES YES") }}

/>
}````
<SweetAlert
title="Error"
show={!magic.entity?.loggedIn && magic.errorMessage}
html={magic.errorMessage}
type="error"
showCancelButton={false}
showConfirmButton={true}
onConfirm={() => clearError()}
/>

相关内容

  • 没有找到相关文章

最新更新