We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be great to pass actions in the payload of the global custom toasts like we can do with the message:
this.$toast.global.myToast({ message: 'Hello there!', action : [ { text : 'Ignore', onClick : (e, toastObject) => { toastObject.goAway(0); } }, { text : 'Hey', onClick : (e, toastObject) => { console.log('👋') toastObject.goAway(0); } } ] })
Unfortunately only the message property can currently take the payload as parameter in the custom toast registration.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It would be great to pass actions in the payload of the global custom toasts like we can do with the message:
Unfortunately only the message property can currently take the payload as parameter in the custom toast registration.
The text was updated successfully, but these errors were encountered: