I am a beginner in vue.js 3. I am trying to use vue-recaptcha-v3 which seems popular. But I do not understand how to use it.
In my main.js, I have :
import { VueReCaptcha } from 'vue-recaptcha-v3'
const app = createApp(App)
.use(store)
.use(router)
.use(VueReCaptcha, { siteKey: '6Lc_______________ipg' })
In my form I just added this :
<VueReCaptcha />
I have this error:
(in English : "This key is not activated for the invisible captcha").
I imagine that my approach is very simple. How can I achieve what I want to do?
