Products Block
Products Block Component Documentation
Overview
productlistitem
component. The component also includes methods for interacting with the products, such as adding them to the cart and calculating currency values.Model Documentation
Model Structure
ProductsBlockComponent
contains the following properties:id
: Unique identifier for the section.cssClass
: Optional CSS class(es) to apply to the section.header
: Optional header text to display above the products.alignment
: Alignment for the header, determining how it should be positioned (1: left, 2: center, 3: right).collectionIds
: Array of collection IDs from which to fetch the products.Example Model
{
"id": "products-section-1",
"cssClass": "custom-products-block",
"header": "Featured Products",
"alignment": 2,
"collectionIds": [12345]
}
Component Structure
ProductsBlockComponent
is defined as follows:1.
2.
header
property is provided in the model. The header alignment is determined by the alignment
property.3.
productlistitem
component. Each product is represented as a grid item.HTML Template
JavaScript
Explanation
Conditional Rendering
this.products
is not null
and contains items.header
property in the model is not null or an empty string.Product Grid
v-for
, and each product is rendered as a productlistitem
component.Methods
Usage
ProductsBlockComponent
, ensure that the model object provided includes the necessary properties and conforms to the structure described. Import the component and register it with your Vue application. Use it in your template with the appropriate data bindings and props.Modified at 2024-08-27 10:09:34