0👍
You have the vue-recacha in your package.json? If have try to clean the node_modules and install again with yarn.
But it’s very simple to use
npm install vue-recaptcha
or
yarn add vue-recaptcha
import as
import VueRecaptcha from 'vue-recaptcha';
register in components:
export default {
components: {
VueRecaptcha
}
}
and use like this
<vue-recaptcha sitekey="your-recaptcha-site-key"></vue-recaptcha>
Source:stackexchange.com