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.

18 lines
460 B

4 years ago
4 years ago
  1. <template>
  2. <div class={parentClass}>
  3. <vlocity_cmt-input
  4. theme={theme}
  5. min-length="10"
  6. required
  7. onblur={handleInput}
  8. label="Minimum 10 char"
  9. placeholder="Minimum 10 char">
  10. </vlocity_cmt-input>
  11. <!-- <c-my-card-component
  12. title="Title"
  13. body="Body"
  14. link="Link"
  15. ></c-my-card-component> -->
  16. </div>
  17. </template>