Call To Action
Documentation for Call To Action Component
Overview
model
object to configure its content and layout. This component dynamically adjusts its display based on the provided properties, allowing for flexible call-to-action sections.Model Documentation
model
object should be structured to provide the necessary configuration and data for the CTA section:Model Structure
String
A unique identifier for the component, used for the component’s
id
attribute and potential custom styling.String
Optional CSS class(es) for additional styling of the CTA container.
String
Optional header text for the CTA container.
String
Optional descriptive text to display alongside or below the button.
String
The text to display on the button.
String
The URL that the button should link to.
Number
Determines the layout of the button and text. Possible values:
0
: Button on the right of the text.1
: Button on the left of the text.2
: Button centered above the text.3
: Button centered below the text.Example Model
{
"id": "cta-1",
"cssClass": "custom-cta",
"header": "Join Us Today!",
"text": "Be part of something great. Discover our services and join our community to get started.",
"buttonText": "Get Started",
"buttonLink": "/get-started",
"buttonOrientation": 2
}
Component Structure
buttonOrientation
property.HTML Template
JavaScript
Explanation
1.
model
object as a prop, which contains configuration and data for rendering.2.
model.text
.model.buttonText
.model.buttonLink
.model.buttonOrientation
.3.
4.
calltoactiondefault
component is registered with Vue and uses a template identified by #calltoactiondefault
.Steps to Create Your Own Call To Action Component
1.
Vue.component()
or app.component()
to register the component.2.
v-if
, v-for
, :href
, etc.) for dynamic rendering based on ButtonOrientation
.3.
props
for the model
object.4.
5.
6.
Modified at 2024-08-27 08:04:45