@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.
8 lines (7 loc) • 337 B
TypeScript
import { App } from 'vue';
import { default as RecaptchaV3 } from './components/RecaptchaV3.vue';
import { RecaptchaPluginOptions } from './types/recaptchaPluginTypes';
declare const recaptchaPlugin: {
install(app: App, options: RecaptchaPluginOptions): void;
};
export { RecaptchaV3, recaptchaPlugin, type RecaptchaPluginOptions };