基于 Vue2.0 的移动端PC 端验证码输入组件.

    xiaoxiao2021-03-25  169

    vue-input-code

    基于Vue2.0的移动端验证码输入组件.

    功能预览

    输入回调完成回调自定义验证码个数样式可控

    这里是可爱的Demo

    支持

    支持 Vue.js 2.0+.

    安装和使用

    npm install vue-input-code --save 作为全局组件使用 //在项目入口文件 import Vue from 'vue' import VueInputCode from 'vue-input-code' Vue.component('VueInputCode', VueInputCode) 作为局部组件 //在某个组件中 import VueInputCode from 'vue-input-code' export default { components: { VueInputCode } }

    HTML中使用:

    <vue-input-code span-size="20px" type="number" :number="5" height="50px" span-color="#f35252" input-color="#3498db" input-size="24px" :code="code" :getinput="getInput" :success="success"></vue-input-code>

    API

    Props

    参数 类型 说明 可选值 默认值 code 数组 用户输入的验证码数组 — — type 字符串 用户输入类型 number,text number getinput 函数 用户每次输入后的回调函数,接受一个验证码字符串 — — success 函数 用户输入完成后的回调函数,接受一个验证码字符串 — — span-size 字符串 输入后的字体显示大小 — 20px span-color 字符串 输入后的字体显示颜色 — #f35252 input-size 字符串 输入框的字体显示大小 — 20px input-color 字符串 输入框的字体显示颜色 — #000 number 数字 验证码个数 — 6 height 字符串 整个框的显示高度 — 60px

    http://www.tuicool.com/articles/Z7byuq

    https://github.com/zhouyuexie/vue-input-codeB

    转载请注明原文地址: https://ju.6miu.com/read-4926.html

    最新回复(0)