UNPKG

@anilkumarthakur/vue3-recaptcha

Version:

This plugin provides a Vue 3 component and plugin for integrating Google reCAPTCHA V3. The plugin enables easy reCAPTCHA token generation, management, and configuration within a Vue 3 application.

10 lines (9 loc) 200 B
export interface RecaptchaPluginOptions { siteKey?: string; action?: string; } export interface RecaptchaComponentProps { siteKey?: string; action?: string; modelValue?: string; }