npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

verify-msg-code

v2.1.7

Published

vue verify、msg、code 输入手机验证码的控件

Readme

verify-msg-code

verify-msg-code 是基于 verify-input-code 插件开发的升级版

由于前端一直没时间维护 verify-input-code 所以决定将其废弃

verify-msg-code 是基于 Vue2.5+的移动端验证码输入组件.

功能预览

  • 输入时回调
  • 结果回调
  • 自定义错误处理
  • 自定义验证码个数
  • 样式可控
  • 输入身份证验证
  • 可以清空输入的验证码

基于

基于 Vue.js 2.5+.

安装和使用

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

API

| 参数 | 类型 | 说明 | 可选值 | 默认值 | | ----------- | ------- | --------------------------------------------------------------------------------------------------------- | ------------------ | ------- | | code | 数组 | 用户输入的验证码数组 | — | — | | initInput | 函数 | 给父组件调用初始化输入框 | — | - | | type | 字符串 | 用户输入类型 当 type 为 idcard 时 number 值为 18 | number,text,idcard | number | | upper-case | Boolean | 类型为 text 的时候可调整输入的字符串为大写 | true,false | false | | get-input | 函数 | 用户每次输入后的回调函数,接受一个验证码字符串 | — | — | | success | 函数 | 用户输入完成后的回调函数,接受一个验证码字符串 | — | — | | span-size | 字符串 | 输入后的字体显示大小 | — | 20px | | span-color | 字符串 | 输入后的字体显示颜色 | — | #f35252 | | input-size | 字符串 | 输入框的字体显示大小 | — | 20px | | input-color | 字符串 | 输入框的字体显示颜色 | — | #000 | | number | 数字 | 验证码个数 | — | 6 | | height | 字符串 | 整个框的显示高度 | — | 60px |