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.

30 lines
929 B

  1. <template>
  2. Wow.
  3. <!-- <vlocity_cmt-action
  4. icon-extraclass="slds-m-right_small"
  5. state-action={item}
  6. action-wrapperclass="slds-size--1-of-1"
  7. action-labelclass="slds-size--7-of-8"
  8. icon-wrapperclass="slds-size--1-of-8"
  9. ></vlocity_cmt-action>
  10. -->
  11. <vlocity_cmt-action
  12. debug="true"
  13. onclick={fetchData}
  14. ondata={onSuccessCallback}
  15. onerror={onErrorCallback}>
  16. <p>URL: {url}</p>
  17. </vlocity_cmt-action>
  18. <!-- <vlocity_cmt-button label="Fetch Contact" theme="nds" type="button" variant="brand">My Button</vlocity_cmt-button> -->
  19. <vlocity_cmt-navigate-action
  20. target-type={_targetType}
  21. target-id={_targetId}
  22. target-name={_targetName}
  23. target-params={_targetParams}
  24. target-action={_targetAction}
  25. replace>
  26. <p>URL: {url}</p>
  27. </vlocity_cmt-navigate-action>
  28. </template>