captcha form validation required error message in vue-recaptcha
I am following this Package in vue.js and Laravel 5.6.7 to implement captcha. https://github.com/DanSnow/vue-recaptcha#install Component code in vue.js <template> <div> <vue-recaptcha v-model="loginForm.recaptcha" sitekey="My key"> </vue-recaptcha> <button type="button" class="btn btn-primary"> Login </button> </div> </template> <script> </script> app.js code import VueRecaptcha from 'vue-recaptcha'; Vue.use(VeeValidate); Vue.component('vue-recaptcha', VueRecaptcha); Question: Is there any property for vue-recaptcha called required which can be passed to show the form validation message? You