Skip to content
New issue

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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature] 馃帹 Action buttons cannot be set dynamically when using custom registration #213

Open
Scino opened this issue Oct 8, 2021 · 0 comments

Comments

@Scino
Copy link

Scino commented Oct 8, 2021

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant