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 🙏

© 2024 – Pkg Stats / Ryan Hefner

npm-vehicle-keyboard

v2.0.5

Published

--- ### 插件效果 : ![avatar](http://m.qpic.cn/psc?/V528Wz0m1kl8mj14UczN2VwSTn1HVSL7/ruAMsa53pVQWN7FLK88i5h08ZZ0NAVP6cahe3VXxQIA988hPUwm.r5Ibiy19NPGF8QVXNg8VPSSt9WUqGvLSPqR7VMam0Q08O73H7NU5YuA!/mnull&bo=OAQhCQAAAAADBzY!&rf=photolist&t=5) ![avatar](http://m

Downloads

6

Readme

车牌号软件盘


插件效果 :

avatar avatar

注意 :该插件仅适用于Vue

Project setup ( 插件下载 ) :

npm install

项目中引入 :

import NpmVehicleKeyboard from "npm-vehicle-keyboard"

使用 :

<NpmVehicleKeyboard 
    v-model="vehicleNo"
    :isShow.sync="isShow"
>
</NpmVehicleKeyboard>

API 文档 :

属性|是否必传|数据类型|解释 --|:--:|:--:|--: v-model|true|String|软键盘所绑定的值 isShow|true|Boolean|控制软键盘弹起或收回的开关。(注意:要与.sync一同使用。示例 :isShow.sync) bindNode|false|String|开启软键盘所点击的元素id innerModal|false|Boolean|是否开启软键盘自带的输入框。默认值 :false。 isFocus|false|Boolean|是否需要将自带输入框聚焦。默认值 :false。 closeClickDown|false|Boolean|是否开启自带收起软键盘的按钮。默认值 :true。 closeClickNode|false|Boolean|是否点击其它地方收起软键盘。默认值 :false。 keyboardColor|false|String|软键盘背景色 keyColor|false|String|软键盘按键背景色


小功能 :

1、自定义头部

解释 : 就是利用Vue插槽的原理,简单示例代码

<template v-slot:header>
    <div>
        自定义的内容
    </div>
</template>