Skip to content

Instantly share code, notes, and snippets.

@TheShubhamVsnv
Created May 14, 2023 13:07
Show Gist options
  • Save TheShubhamVsnv/24e0394bc2d3f72f841a8c0455deecda to your computer and use it in GitHub Desktop.
Save TheShubhamVsnv/24e0394bc2d3f72f841a8c0455deecda to your computer and use it in GitHub Desktop.
Success Toast Notifications .js
import { LightningElement } from 'lwc';
import { ShowToastEvent } from 'lightning/platformShowToastEvent';
export default class ToastExample extends LightningElement {
showToast() {
const event = new ShowToastEvent({
title: 'Success!',
message: 'The toast message goes here.',
variant: 'success',
mode: 'dismissable'
});
this.dispatchEvent(event);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment