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.

23 lines
636 B

  1. <template>
  2. <div class="nds-box">
  3. <p>A block of content</p>
  4. </div>
  5. <div class="nds-grid nds-grid_align-spread">
  6. <div class="nds-col">
  7. <vlocity_cmt-button
  8. theme="nds"
  9. onclick={gotoPrev}
  10. variant="primary"
  11. label="Previous">
  12. </vlocity_cmt-button>
  13. </div>
  14. <div class="nds-col">
  15. <vlocity_cmt-button
  16. theme="nds"
  17. onclick={gotoNext}
  18. variant="secondary"
  19. label="Next">
  20. </vlocity_cmt-button>
  21. </div>
  22. </div>
  23. </template>