recaptcha-module icon indicating copy to clipboard operation
recaptcha-module copied to clipboard

Multiple recaptcha to the single page

Open TangoPJ opened this issue 3 years ago • 4 comments

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.

TangoPJ avatar Nov 24 '21 06:11 TangoPJ

I have the same problem? is there any solution for this?

prabodhana avatar Nov 25 '21 10:11 prabodhana

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" />
...

SuddenDev avatar Mar 22 '22 21:03 SuddenDev

Thank you, pretty interesting solution, but I used google reCaptcha v3 by using CDN, It worked for me now...

TangoPJ avatar Mar 25 '22 20:03 TangoPJ

I have multiple visible recaptchas on the same page and I'm dealing with this issue as well

cupoftwee avatar Oct 20 '22 19:10 cupoftwee