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.

13 lines
395 B

4 years ago
  1. import { LightningElement } from 'lwc';
  2. import pubsub from 'vlocity_cmt/pubsub';
  3. import { OmniscriptBaseMixin } from 'vlocity_cmt/omniscriptBaseMixin';
  4. export default class MyCustomComponent extends OmniscriptBaseMixin(LightningElement) {
  5. connectedCallback() {
  6. console.log("MyCustomComponent - Connected");
  7. }
  8. handleBlur(evt) {
  9. this.omniUpdateDataJson(evt);
  10. }
  11. }