Product Attributes
Documentation: Product Attributes Component
Overview
Model Documentation
model
object for the Product Attributes Component contains configuration properties that control the component's appearance and behavior.Model Structure
String
A unique identifier for the component, used for element targeting and styling.
String
Optional CSS class(es) to apply to the component's container.
String
Optional header text to display above the attributes list.
Number
Determines the alignment of the header:
1
: Align left2
: Center align3
: Align rightExample Model
{
"id": "productAttributes",
"cssClass": "attributes-class",
"header": "Product Attributes",
"alignment": 2
}
Component Structure
1.
2.
HTML Template
1.
attributeSet.groups
is available and contains items.2.
attributeSet
is not available but attributes
contains items.
JavaScript
Explanation
productData
, extracting attributeSet
and attributes
data. It conditionally renders the appropriate section based on the presence of grouped attributes or a simple list of attributes.attributeSet
with groups exists or just a flat list of attributes
.getAlignmentClass
method dynamically assigns CSS classes based on the alignment value provided in the model.Usage
1.
ProductAttributes
component is registered in your Vue app.2.
3.
ProductAttributes
component in your Vue template with the appropriate model data.Modified at 2024-08-27 10:01:03