0.1.0 • Published 2 years ago

verify-code-box v0.1.0

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

CodeBox

React 验证码输入组件

截图

screenshot

安装

npm install verify-code-box

基本用法

const codeRef = useRef()

// 清空
const clear = () => {
  codeRef.current.clear()
}

const onChange = val => {
  console.log('val:', val)
}

<CodeBox ref={codeRef} onChange={onChange} />

Attributes

参数说明类型可选值默认值
ref实例func——————
onChangechange事件func——————

实例方法

方法名说明参数
clear清除———