Examples of Vlocity/SF LWC components (in various states of working)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
236 B

4 years ago
4 years ago
  1. import { LightningElement, track } from 'lwc';
  2. export default class LightningHelloWorldComponent extends LightningElement {
  3. @track greeting = 'World';
  4. changeHandler (event) {
  5. this.greeting = event.target.value;
  6. }
  7. }