货无忧
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

947 B

代码演示

基础用法

点击获取验证码触发onClick事件并开始倒计时或设置autoCountDowntrue自动开始倒计时。

<hd-verification-code :autoCountDown="autoCountDown" @onClick="onClick"></hd-verification-code>
const autoCountDown = ref<boolean>(true)
function onClick() {
  console.log('点击获取验证码')
}

倒计时时间

通过second设置倒计时时间,默认60s。

<hd-verification-code :second="second"></hd-verification-code>
const second= ref<number>(60)

主题颜色

通过type设置主题,支持主题类型有primaryerrorwarningsuccess,默认primary

<hd-verification-code type="primary"></hd-verification-code>
<hd-verification-code type="error"></hd-verification-code>
<hd-verification-code type="warning"></hd-verification-code>
<hd-verification-code type="success"></hd-verification-code>