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.

17 lines
490 B

4 years ago
  1. import template from './myOmniComponentInBaseClass.html';
  2. import { LightningElement } from 'lwc';
  3. import { OmniscriptBaseMixin } from 'vlocity_cmt/omniscriptBaseMixin';
  4. export default class MyOmniComponentInBaseClass extends OmniscriptBaseMixin(LightningElement) {
  5. connectedCallback() {
  6. console.log("myOmniComponentInBaseClass - Connected");
  7. }
  8. handleBlur(evt) {
  9. this.omniUpdateDataJson(evt.target.value);
  10. }
  11. render() {
  12. return template;
  13. }
  14. }