Skip to content

Instantly share code, notes, and snippets.

@salesforce-casts
Last active August 4, 2020 08:44
Show Gist options
  • Save salesforce-casts/e6fec1b3989540eb63c0b18fd276331a to your computer and use it in GitHub Desktop.
Save salesforce-casts/e6fec1b3989540eb63c0b18fd276331a to your computer and use it in GitHub Desktop.
//EventCommunication.js
import { LightningElement } from "lwc";
export default class EventCommunication extends LightningElement {
handleSend() {
this.dispatchEvent(new CustomEvent("senddata"));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment