Skip to content

Instantly share code, notes, and snippets.

@arun12209
Created January 21, 2023 06:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arun12209/a821e8b6328285974d1a61709c541955 to your computer and use it in GitHub Desktop.
Save arun12209/a821e8b6328285974d1a61709c541955 to your computer and use it in GitHub Desktop.
import { LightningElement } from 'lwc';
export default class MyComponent extends LightningElement {
_secret = 'This is a secret message';
get secretMessage() {
return this._secret;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment