Financial Record Detail
This section describes the BfmDetailComponent component.
Composition
The BfmDetailComponent is composed of the following components:
- BfmFinancialRecordDetailsComponent - Financial record detail main component.
Usage
You need to import it in your module and use it in your template.
details.component.ts
import { BfmDetailComponent } from '@celerofinancas/ui-cash-flow';
@Component({
standalone: true,
selector: 'details',
imports: [BfmDetailComponent],
templateUrl: './details.component.html',
})
export class DetailsComponent {}
Then, in your template, you can use the component like this:
details.component.html
<bfm-financial-record-detail [pageTitle]="'Detalhe do registro financeiro'"/>
Inputs
The BfmDetailComponent component has the following inputs:
pageTitle
Page title
| Type | Default |
|---|---|
string | 'Detalhe do registro financeiro' |
Events
The BfmDetailComponent component has no events.