Skip to content

Instantly share code, notes, and snippets.

@TheShubhamVsnv
Created May 14, 2023 15:27
Show Gist options
  • Save TheShubhamVsnv/7e51294b4c49fe549c8ffe8e07bdcaa0 to your computer and use it in GitHub Desktop.
Save TheShubhamVsnv/7e51294b4c49fe549c8ffe8e07bdcaa0 to your computer and use it in GitHub Desktop.
spinner.html
<template>
<!-- Button to show the spinner -->
<lightning-button label="Show Spinner" onclick={handleButtonClick}></lightning-button>
<!-- Spinner component, displayed when isLoading is true -->
<lightning-spinner if:true={isLoading} alternative-text="Loading"></lightning-spinner>
<!-- Content that is displayed when isLoading is false -->
<div if:false={isLoading}>
<!-- Your content here -->
</div>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment