Skip to content

Instantly share code, notes, and snippets.

@TheShubhamVsnv
Last active May 14, 2023 13:44
Show Gist options
  • Save TheShubhamVsnv/def5c8c594dc69bb519876ac8c8968f6 to your computer and use it in GitHub Desktop.
Save TheShubhamVsnv/def5c8c594dc69bb519876ac8c8968f6 to your computer and use it in GitHub Desktop.
slds-tabs
<template>
<lightning-tabset variant="vertical"> <!-- Container for the tabs -->
<lightning-tab label="Tab 1" value="1"> <!-- First tab -->
<p>This is the content of Tab 1.</p>
</lightning-tab>
<lightning-tab label="Tab 2" value="2"> <!-- Second tab -->
<p>This is the content of Tab 2.</p>
</lightning-tab>
<lightning-tab label="Tab 3" value="3"> <!-- Third tab -->
<p>This is the content of Tab 3.</p>
</lightning-tab>
</lightning-tabset>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment