On this page

Angular Loading Button Component
Angular Buttons with built-in loading indicators. Indicate the loading state of the button bridging the gap between action and feedback.
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
```typescript import { LoadingButtonModule } from '@coreui/angular'; @NgModule({ imports: [LoadingButtonModule,] }) export class AppModule() { } ```
| name | description | type | default | | ---- | ----------- | ---- | ------- | | `disabledOnLoading` | Makes button disabled when loading. | `boolean` | _false_ | | `loading` | Loading state (set to true to start animation). | `boolean` | _false_ | | `spinnerType` | Type of spinner. | `border` \| `grow` |_border_|
##### Outputs| name | description | type | | ---- | ----------- | ---- | | `loadingChange` | Event emitted on `loading` change. | `boolean` |