[Vuejs]-Does google recaptcha 3 on vuetify really not appear? automatic?

0👍

There are different versions available in google recaptcha.

In the above question your are using reCAPTCHA v3, Its just evaluating the user interaction in pure javascript and returning a score, Instead of having a checkbox “I’m not a robot”. That’s how version 3 works

I think you are looking for reCAPTCHA v2 (“I’m not a robot” Checkbox)

In this version, the user has to tick box and verify its a human interaction

You can use this library to implement the same
https://github.com/drozdzynski/vue-grecaptcha

There are still 2 more version in google recaptcha that is

reCAPTCHA v2 (Android) reCAPTCHA v2 (Invisible reCAPTCHA badge)

Leave a comment