0๐
โ
As stated in documentation, VueRecaptcha was imported and added to as component.
import VueRecaptcha from 'vue-recaptcha';
export default {
...
components: { VueRecaptcha }
};
In the template it stated to use the vue-recaptcha
tag.
<vue-recaptcha sitekey="Your key here">
<button>Click me</button>
</vue-recaptcha>
Source:stackexchange.com