recaptcha-module
recaptcha-module copied to clipboard
Multiple recaptcha to the single page
Can you explain me, how to add multiple recaptcha to the single page in the nuxt js project? I have a form called BaseForm, it's the single file component, that used multiple times in the parent component.
I have the same problem? is there any solution for this?
Just in case anyone else has this issue: I also had two recaptcha v2s on the same page and made it work by using the v-if
directive. I'm basically conditionally rendering each component based on their visibilty in my UI. So like they're on different tabs for example and check which one is visible.
...
<recaptcha v-if="visible" />
...
Thank you, pretty interesting solution, but I used google reCaptcha v3 by using CDN, It worked for me now...
I have multiple visible recaptchas on the same page and I'm dealing with this issue as well