Blog Category List
Documentation: Blog Category List Component
Overview
model
object to configure its behavior and appearance. It dynamically generates a list of blog categories, with each category represented as a clickable block.Model Documentation
model
object should include configuration details used by the component:Model Structure
String
A unique identifier for the component, used as the
id
attribute in the HTML.String
Optional CSS class(es) for additional styling of the container element.
String
Optional header text to be displayed above the list of blog categories.
Example Model
{
"id": "blog-category-list-1",
"cssClass": "custom-blog-category-list",
"header": "Blog Categories"
}
Component Structure
model
and the fetched blog categories.HTML Template
JavaScript
Explanation
1.
model
object as a prop, which contains configuration and data for rendering.2.
3.
_getBlogCategoryList
to fetch the list of blog categories when the component is mounted. The result is assigned to the blogCategoryList
data property.4.
Usage
1.
Vue.component()
or app.component()
to register the component.2.
v-if
, v-for
, :href
, etc.) for dynamic rendering.3.
props
for the model
object.mounted()
lifecycle hook to fetch data when the component is loaded.4.
5.
6.
Modified at 2024-08-27 07:55:31