VueCaptchaSwitcher is a Vue 3 component that allows seamless integration and dynamic switching between multiple CAPTCHA providers, including Google reCAPTCHA, hCaptcha, and Cloudflare Turnstile. Easily customize themes, sizes, and manage verification events.
A Vue 3 component that allows you to easily switch between different CAPTCHA services such as Google reCAPTCHA, hCaptcha, and Cloudflare Turnstile.
You can install vue-captcha-switcher
using npm or yarn.
npm install vue-captcha-switcher
yarn add vue-captcha-switcher
Here’s an example of how to use the VueCaptchaSwitcher component in your Vue 3 project.
<template>
<VueCaptchaSwitcher
:captchaName="captchaName"
:publicKey="publicKey"
v-model="captchaResponse"
/>
</template>
<script setup>
import { ref } from 'vue';
import VueCaptchaSwitcher from 'vue-captcha-switcher';
const captchaName = ref('recaptcha'); // Options: 'recaptcha', 'hcaptcha', 'turnstile'
const publicKey = 'your-site-key';
const captchaResponse = ref('');
</script>
You can switch between Google reCAPTCHA, hCaptcha, and Cloudflare Turnstile by changing the captchaName
prop. The possible values are:
recaptcha
hcaptcha
turnstile
For example:
<template>
<VueCaptchaSwitcher
:captchaName="'hcaptcha'"
:publicKey="yourHcaptchaKey"
v-model="captchaResponse"
/>
</template>
Prop | Type | Required | Description |
---|---|---|---|
captchaName |
String | Yes | Name of the CAPTCHA service to use ('recaptcha' , 'hcaptcha' , 'turnstile' ). |
publicKey |
String | Yes | Public site key for the respective CAPTCHA service. |
captchaScriptIds |
Object | No | (Optional) Object to customize the script tag IDs for each CAPTCHA service. Defaults: { recaptcha: 'recaptcha-script', hcaptcha: 'hcaptcha-script', turnstile: 'turnstile-script' } . |
captchaReset |
Boolean | No | (Optional) Boolean value to manually trigger a reset of the CAPTCHA. Defaults to false . |
loadingTimeout |
Number | No | (Optional) Timeout in milliseconds to wait before the CAPTCHA fails to load. Defaults to 0 (no timeout). |
Event | Description |
---|---|
verify |
Emitted when CAPTCHA verification is successful. Passes the CAPTCHA response token. |
expire |
Emitted when the CAPTCHA expires and requires re-verification. |
fail |
Emitted when CAPTCHA fails to load or there’s an error during verification. |
captchaReset |
Emitted when the CAPTCHA is reset using the captchaReset prop. |
Contributions are welcome! If you’d like to contribute to the project, follow these steps:
Fork the repository.
Create a new branch for your feature or bugfix.
git clone https://github.com/saidurbhuiyan/vue-captcha-switcher.git
npm install
npm run build
This project is licensed under the MIT License. See the LICENSE file for more details.