Form
Documentation: Form Component
Overview
Model Documentation
model
object configures the Form Component, defining its structure, field types, and other settings.Model Structure
String
A unique identifier for the form component, used as the
id
attribute in the HTML.String
Optional CSS class(es) for additional styling of the form container.
String
Optional header text displayed above the form.
Number
Alignment of the header, where 1 is left, 2 is center, and 3 is right.
String
Text displayed on the form's submit button.
Boolean
Determines whether to show the reCAPTCHA widget.
String
Identifier used for email-related operations.
Array
List of field configurations for the form. Each field includes:
String
Name of the field.
String
Label for the field.
Number
Type of the field (1 for text, 2 for textarea, 3 for email, 4 for file).
Boolean
Whether the field is required.
String
Value of the field.
Boolean
Whether the field is hidden.
Boolean
Whether the field has validation errors.
String
Validation error message for the field.
Example Model
{
"id": "contact-form",
"cssClass": "contact-form",
"header": "Contact Us",
"alignment": 2,
"buttonText": "Submit",
"showReCaptcha": true,
"emailProfileId": "contact@mywebsite.com",
"fields": [
{
"name": "name",
"label": "Full Name",
"type": 1,
"required": true,
"value": "",
"isHidden": false,
"hasValidationError": false,
"validationMessage": "Name is required."
},
{
"name": "email",
"label": "Email Address",
"type": 3,
"required": true,
"value": "",
"isHidden": false,
"hasValidationError": false,
"validationMessage": "Valid email address is required."
},
{
"name": "message",
"label": "Message",
"type": 2,
"required": false,
"value": "",
"isHidden": false,
"hasValidationError": false,
"validationMessage": ""
},
{
"name": "attachment",
"label": "Attachment",
"type": 4,
"required": false,
"value": "",
"isHidden": false,
"hasValidationError": false,
"validationMessage": ""
}
]
}
Component Structure
1.
2.
3.
4.
5.
HTML Template
JavaScript
Explanation
data
properties.Usage
1.
Ensure that
formdefault
is registered in your Vue app.2.
Pass a configuration object to the component, defining fields, labels, and other settings.
3.
Implement
_sendEmail
method to handle form submission logic, such as sending data to a server.4.
Configure reCAPTCHA API key if needed for spam protection.
Modified at 2024-08-27 09:02:21