The Brand List Component is a Vue.js component that displays a list of brand items, each represented by an image or name. The component is designed to be highly customizable through the model object, which controls the appearance and functionality.
The Brand List Component presents a grid of brand items. Each item can either display an image or a textual representation of the brand's name. The component adapts to different layouts based on the provided configuration.
The model object should have the following properties:
id: String A unique identifier for the component. This is used for the component’s id attribute and can be used for styling or targeting the component with JavaScript.
cssClass: String Optional CSS class(es) for the outer container. This allows for additional styling.
header: String Optional header text to be displayed at the top of the list. This text is rendered as an <h2> element.
alignment: Number Controls the alignment of the header text. Possible values are:
1: Left alignment (justify-content-start)
2: Center alignment (justify-content-center)
3: Right alignment (justify-content-end)
brandIds: Array An array of brand IDs used to fetch brand data.
The HTML template is responsible for rendering the list of brands. It uses Vue.js directives to dynamically generate the list based on the BrandList data: