Skip to main content

Chart of Accounts

This section describes the BfmChartOfAccountsComponent component.

Usage

You can import the BfmChartOfAccountsComponent directly in your route configuration.

import { BfmChartOfAccountsComponent } from 'celerofinancas/ui-company-kit';

const routes = [
{
path: 'chart-of-accounts',
component: BfmChartOfAccountsComponent,
},
];

But if you need more customization, you need to import it in your module and use it in your template.

chart-of-accounts.component.ts
import { BfmChartOfAccountsComponent } from '@celerofinancas/ui-company-kit';

@Component({
selector: 'chart-of-accounts',
imports: [BfmChartOfAccountsComponent],
templateUrl: './chart-of-accounts.component.html',
standalone: true,
})
export class ChartOfAccountsComponent {}

Then, in your template, you can use the component like this:

chart-of-accounts.component.html
<bfm-chart-of-accounts
[headerTitle]="'Chart of Accounts'"
[subTitle]="'Here you can consult your <b>Chart of Accounts</b>'"
/>

Inputs

The BfmChartOfAccountsComponent component has the following inputs:

headerTitle

Header title to be displayed.

TypeDefault
string'Chart of Accounts'

subTitle

Subtitle of the page

TypeDefault
string'Here you can consult your <b>Chart of Accounts</b>'

Events

The BfmChartOfAccountsComponent component has no events.