You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 27, 2023. It is now read-only.
Is your feature request related to a problem? Please describe.
when it comes to validation, sometimes you really need to match 2 fields.
consider the following for example.
constform=computed(()=>({id: "my-awesome-form",fields: {name: EmailField({label: "Email",validations: [Validator({validator: required,text: "This field is required"}),Validator({validator: validateEmail,text: "Format of email is incorrect",}),],}),password: PasswordField({label: "Password",validations: [Validator({validator: required,text: "This field is required"}),],}),confirmpassword: PasswordField({label: "Confirm Password",validations: [Validator({validator: required,text: "This field is required"}),Validator({validator: (value: String)=>value===form.password,text: "Passwords do not match"}),],}),},}));constformSubmitted=(e: any)=>{console.log(e);};
confirmpassword needs to match password
Describe the solution you'd like
Ability to match 2 fields
Describe alternatives you've considered
No response
Additional context
No response
Validations
Check that there isn't already an issue that request the same feature to avoid creating a duplicate.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
when it comes to validation, sometimes you really need to match 2 fields.
consider the following for example.
confirmpassword needs to match password
Describe the solution you'd like
Ability to match 2 fields
Describe alternatives you've considered
No response
Additional context
No response
Validations
The text was updated successfully, but these errors were encountered: