paliari / v-toaster

Vue Toaster
56 stars 14 forks source link

Execute callback when toaster is close. #9

Open Zorin95670 opened 3 years ago

Zorin95670 commented 3 years ago

It would be nice to execute an user callback where toaster is close.

Like:

this.$toaster.error(
  'Your will be rediect after this popup is closed.',
  {
    timeout: 8000,
    onClose: () => { /* Do something. */}
  },
);