Dropdown Menu Item
This section describes the BfmDropdownMenuItemComponent component.
Composition
The BfmDropdownMenuItemComponent is composed of the following components:
- BfmHoverDropdownComponent - Hover dropdown component.
Usage
You need to import it in your module and use it in your template.
dropdown-item.component.ts
import { BfmDropdownMenuItemComponent } from '@celerofinancas/ui-user-kit';
@Component({
standalone: true,
selector: 'dropdown-menu-item',
imports: [BfmDropdownMenuItemComponent],
templateUrl: './dropdown-menu-item.component.html',
})
export class DropdownMenuItemComponent {}
Then, in your template, you can use the component like this:
dropdown-item.component.html
<bfm-dropdown-menu-item />
Inputs
The BfmDropdownMenuItemComponent component has no inputs.
Events
The BfmDropdownMenuItemComponent component has no events.