Skip to main content

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.

TypeDefault
Companyundefined

subtitle

Subtítulo da página de sucesso.

TypeDefault
string''

title

Título da página de sucesso.

TypeDefault
string''

Events

The BfmSuccessComponent component has no Events.