I am trying to incorporate recaptcha in vue.js, I am also using Laravel 5.6.7
Vue Package for Captcha
https://github.com/DanSnow/vue-recaptcha#install
Blade
<div class="col-md-8">
<login></login>
</div>
app.js
import VueRecaptcha from 'vue-recaptcha';
Vue.use(VueRecaptcha);
Vue.component('login', require('./components/login.vue'));
Login Component in vue.js
<template>
<div>
<div class="form-group row">
<div class="col-md-6">
<div class="g-recaptcha" data-sitekey="My site key">
</div>
</div>
</div>
</div>
</template>
Problem
I placed the div for captcha but it renders nothing. Am I missing anything?