图片验证码生成器 demo Github New issue
npm i fox-captcha
#or
yarn add fox-captcha
#or
pnpm i fox-captcha
<template>
<fox-captcha></fox-captcha>
</template>
<script>
import { createApp } from "vue";
import FoxCaptcha from "fox-captcha";
const createApp().use(FoxCaptcha);
</script>
属性 | 说明 | 类型 | 可选值 | 默认值 |
---|---|---|---|---|
type | 类型 string | letter/digital | digital | |
width | 类型 | number | - | 100 |
height | 类型 | number | - | 30 |
方法名 | 说明 | 传入参数 | 返回值 |
---|---|---|---|
validate | 校验验证码是否正确 | string | boolean |
feat:优化文档
feat:增加 vue3 支持
feat:更新文档
feat:完成组件