Skip to content

Instantly share code, notes, and snippets.

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