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
489 B

import template from './myOmniComponentInBaseClass.html';
import { LightningElement } from 'lwc';
import { OmniscriptBaseMixin } from 'vlocity_cmt/omniscriptBaseMixin';
export default class MyOmniComponentInBaseClass extends OmniscriptBaseMixin(LightningElement) {
connectedCallback() {
console.log("myOmniComponentInBaseClass - Connected");
}
handleBlur(evt) {
this.omniUpdateDataJson(evt.target.value);
}
render() {
return template;
}
}