0.3.1 • Published 3 years ago

vue-tencent-captcha v0.3.1

Weekly downloads
2
License
MIT
Repository
github
Last release
3 years ago

vue-tencent-captcha

腾讯防水墙,验证码组件

usage

yarn add vue-tencent-captcha
import Captcha from '../packages/Captcha.vue';

export default {
  name: 'app',
  data() {
    return {
      show: true,
      appId: 'tt12345',
      extraBizParam: {
        bizState: 'hhhhh',
      },
    };
  },
  components: {
    Captcha,
  },
  mounted() {
    setTimeout(() => {
      // this.$root.captcha.show();
    }, 5000);
  },
  watch: {
    show(newVal) {
      if (!newVal) {
        this.$root.captcha.destroy();
      }
    },
  },
  methods: {
    captchaCallback(res) {
      console.log(res);
    },
  },
};
<template v-if="show">
  <Captcha :appId="appId" :callback="captchaCallback" :extraBizParam="extraBizParam">
    <button>单击验证</button>
  </Captcha>
</template>

属性

成员说明类型默认值
appIdappIdString
callback回调函数function
extraBizParamoptions,Objectnull

配置参数

options提供以下配置参数:

配置名值类型说明
bizStateAny自定义透传参数,业务可用该字段传递少量数据,该字段的内容会被带入callback回调的对象中
extraBizParam: {
    bizState: 'hhh'
}

回调内容

字段名值类型说明
retInt验证结果,0-验证成功,2-用户主动关闭验证码
ticketString验证成功的票据,当且仅当ret=0时ticket有值
appidString场景Id
bizStateAny自定义透传参数
// 回调
cb(res) {
  console.log(res);
}

示例

<tencentCaptcha appid="xxx" :callback="cb" :extraBizParam="extraBizParam">
  单击验证
</tencentCaptcha>

实例方法

// 隐藏验证码
this.$root.captcha.destroy(); 
// 显示验证码
this.$root.captcha.show();
// 获取ticket
this.$root.captcha.getTicket();
0.3.1

3 years ago

0.3.0

3 years ago

0.2.0

4 years ago

0.1.9

4 years ago

0.1.8

5 years ago

0.1.8-rc8

5 years ago

0.1.8-rc7

5 years ago

0.1.8-rc6

5 years ago

0.1.8-rc5

5 years ago

0.1.8-rc4

5 years ago

0.1.8-rc3

5 years ago

0.1.8-rc2

5 years ago

0.1.8-rc1

5 years ago

0.1.8-rc0

5 years ago

0.1.7

5 years ago

0.1.6

5 years ago

0.1.2-rc4

5 years ago

0.1.2-rc3

5 years ago

0.1.2-rc2

5 years ago

0.1.2-rc1

5 years ago

0.1.5-rc3

5 years ago

0.1.5-rc2

5 years ago

0.1.5-rc1

5 years ago

0.1.5

5 years ago

0.1.4

5 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago