Products Carousel
Products Carousel Component Documentation
Overview
Model Documentation
Model Structure
ProductsCarouselComponent
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 carousel.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": "carousel-1",
"cssClass": "custom-carousel",
"header": "Top Rated Products",
"alignment": 2,
"collectionIds": ["xxxx"]
}
Component Structure
ProductsCarouselComponent
is structured as follows:1.
2.
header
property is provided in the model. The alignment is determined by the alignment
property.3.
tns
library with options for responsive item counts and navigation controls.4.
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.Carousel Initialization
carouselInitialization
method configures and initializes the carousel using the tns
library. Default options are provided, which can be overridden by options specified in the data-carousel-options
attribute of the carousel container.Methods
Usage
ProductsCarouselComponent
, ensure that the model object provided includes the necessary properties and conforms to the structure outlined. 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:11:40