pages._explore-components-base-button.title
pages._explore.sections.basic-usage.title
vue
<BaseButton
text="Show Alert"
@triggered="fnButtonAction()"
/>typescript
pages._explore.sections.complex-usage.title
vue
<BaseButton
text="Show Alert"
:size="BaseButtonSizes.XS"
:color="BaseButtonColors.PRIMARY"
:variant="BaseButtonVariants.SOLID"
@triggered="fnButtonAction()"
/>typescript
import { BaseButtonColors, BaseButtonSizes, BaseButtonVariants } from '#core-types/components/base/base-button'pages._explore.sections.props.title
Property description coming