Skip to content

XVerify 短信验证码

示例

基础用法

<template>
  <div>
    <XVerify :api="api" size="large"></XVerify>
    <XVerify :api="api"></XVerify>
    <XVerify :api="api" size="small"></XVerify>
  </div>
</template>
<script lang="ts" setup>
  import { XVerify } from '@vtj/web';

  const api = async () => {
    return true;
  };
</script>

API

属性

属性名说明类型默认值
api发送验证码接口function-
seconds重发倒数秒数number-
maxlength验证码长度number-
placeholder提示文本string-
size尺寸string-

Released under the MIT License.