Upload Item
This section describes the BfmUploadItemComponent component.
Usage
To use the BfmUploadItemComponent, you need to import it in your module and use it in your template.
upload-item.component.ts
import { BfmUploadItemComponent } from "@celerofinancas/ui-files";
@Component({
standalone: true,
selector: "upload-item",
imports: [BfmUploadItemComponent],
templateUrl: "./upload-item.component.html",
})
export class UploadItemComponent {}
Then, in your template, you can use the component like this:
upload-item.component.html
<bfm-upload-item [image]="image" />
Inputs
The BfmUploadItemComponent component has the following inputs:
image
The image collection object to be displayed.
Type: ImageCollection- Default value:
{}
Events
The BfmUploadItemComponent component has no events.