我想在vue.js中加入recaptcha,我也在使用Laravel 5.6.7
Captcha的Vue包
https://github.com/DanSnow/vue-recaptcha#install
刀片
<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'));
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>
问题
我为验证码设置了div,但它什么也没渲染。我错过了什么吗?
答案 0 :(得分:0)
如documentation中所述,VueRecaptcha已导入并添加为组件。
=ROUNDDOWN(COUNTROWS(FILTER('Lookup_Query','Lookup_Query'[Entrances]<EARLIER('Lookup_Query'[Entrances]) && ISBLANK('Lookup_Query'[Entrances])=FALSE()))/(COUNTROWS(FILTER('Lookup_Query',ISBLANK('Lookup_Query'[Entrances])=FALSE()))-1),3)
在模板中,它声明使用import VueRecaptcha from 'vue-recaptcha';
export default {
...
components: { VueRecaptcha }
};
标记。
vue-recaptcha