Digital Certificate - Success
This section describes the BfmSuccessComponent component.
Usage
You need to import it in your module and use it in your template.
success.component.ts
import { BfmSuccessComponent } from '@celerofinancas/ui-charges';
@Component({
standalone: true,
selector: 'success',
imports: [BfmSuccessComponent],
templateUrl: './success.component.html',
})
export class SuccessComponent {}
Then, in your template, you can use the component like this:
success.component.html
<bfm-success
[company]="companyData"
[subtitle]="'Your subtitle here'"
[title]="'Your title here'"
/>
Inputs
The BfmSuccessComponent component has the following inputs:
company
Dados da empresa.
| Type | Default |
|---|---|
Company | undefined |
subtitle
Subtítulo da página de sucesso.
| Type | Default |
|---|---|
string | '' |
title
Título da página de sucesso.
| Type | Default |
|---|---|
string | '' |
Events
The BfmSuccessComponent component has no Events.