# google 驗證碼 reCAPTCHA v2 checkbox 註冊網站: https://www.google.com/recaptcha/admin/site/343119573/settings ## 使用方式: 用 vue-recaptcha 套件完成 sitekey 帶入註冊的sitekey verify 帶上(token)過來 把token帶入後台去比對 ``` <vue-recaptcha v-if="all_complete" sitekey="6LfVlnMUAAAAANX-T_kInh1KQUjU0KZKv_0mKmL_" @verify="onCaptchaVerified"></vue-recaptcha> <script> export default { onCaptchaVerified(token) { axios .get("/api/mycasa/reCAPTCHA?response=" + token) .then(res => { if (res.data) { this.recaptcha = true; } }) .catch(err => { console.log(err); }); } } </script> ```