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.
|
<template>
|
|
<div class="nds-box">
|
|
<p>A block of content</p>
|
|
</div>
|
|
<div class="nds-grid nds-grid_align-spread">
|
|
<div class="nds-col">
|
|
<vlocity_cmt-button
|
|
theme="nds"
|
|
onclick={gotoPrev}
|
|
variant="primary"
|
|
label="Previous">
|
|
</vlocity_cmt-button>
|
|
</div>
|
|
<div class="nds-col">
|
|
<vlocity_cmt-button
|
|
theme="nds"
|
|
onclick={gotoNext}
|
|
variant="secondary"
|
|
label="Next">
|
|
</vlocity_cmt-button>
|
|
</div>
|
|
</div>
|
|
</template>
|