[Vuejs]-Captcha not rendering in vue.js laravel 5.6.7

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>

Leave a comment