TypeScript + Vue 3 To get type suggestions for instance variables (this is not needed for composition API), create a new file calledshims-vue-recaptcha-v3.d.tsand put the following inside it: import{ReCaptchaInstance}from'recaptcha-v3'declaremodule'@vue/runtime-core'{interfaceComponentCustomPro...
TypeScript + Vue 3 To get type suggestions for instance variables (this is not needed for composition API), create a new file called shims-vue-recaptcha-v3.d.ts and put the following inside it: import { ReCaptchaInstance } from 'recaptcha-v3' declare module '@vue/runtime-core' { interf...
/vue3-recaptcha2"></script><script>constapp=Vue.createApp({name:"app",components:{VueRecaptcha},data(){return{show:false,recaptcha:null,recaptchaSiteKey:'key'}},methods:{toggle(){this.show=!this.show;},recaptchaUpdated(recaptcha){this.recaptcha=recaptcha;}}});app.mount("#app");</script...
chore(deps-dev): bump typescript from 4.8.3 to 4.8.4 Oct 1, 2022 View all files README Apache-2.0 license Vue reCAPTCHA-v3 A simple and easy to use reCAPTCHA (v3 only) library for Vue based onreCAPTCHA-v3. The latest version of this package supports Vue 3!See here for Vue 2 usag...