yl-slider-captcha-sdk
v0.0.3
Published
滑动验证码
Downloads
2
Readme
使用说明
//引入
import YlSliderCaptcha from 'yl-slider-captcha-sdk';
//初始化
useEffect(() => {
const config = {
requestCaptchaDataUrl: '/api/captcha/gen',
validCaptchaUrl: '/api/captcha/check',
bindEl: '#captcha-box',
};
const style = {
// logoUrl : null
};
const captcha = new YlSliderCaptcha(config, style);
captcha.init();
}, []);
//元素
<div id="captcha-box"></div>
配置参数说明