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

vue-car-plate-keyboard

v1.1.1

Published

A vehicle license plate number keyboard

Downloads

8

Readme

A vehicle license plate number keyboard

demo image

Requirements

  • Vue.js 2.x

Quik Start

clone or download

$ git clone [email protected]:yimocanxue/vue-car-plate-keyboard.git 

install dependencies

$ cd vue-car-plate-keyboard
$ npm install

run and open browser with http://0.0.0.0:8080

$ npm run dev

Install

NPM

$ npm install vue-car-plate-keyboard -D

Usage

import first, then call Vue.use() before new Vue instance

import Vue from 'vue';
import VueCarPlateKeyboard from './lib/index';

Vue.config.productionTip = false;
Vue.use(VueCarPlateKeyboard);
new Vue({
    el: '#app',
    data: function () {
    },
    methods: {
        tapedKey (data) {
            console.log(data);
        },
        tapedBox (data) {
            console.log(data);
        },
        tapedDel (data) {
            console.log(data);
        },
        tapedOk (data) {
            console.log(data);
        } 
    }
})

use directive in HTML file

<div id="app">
  <car-plate-keyboard 
      car-number="苏E55552学"
      active-color="#ff0000"
      ok-btn-text="关闭"
      v-on:tap-key="tapedKey"
      v-on:tap-box="tapedBox"
      v-on:tap-del="tapedDel"
      v-on:tap-ok="tapedOk"
   ></car-plate-keyboard>
</div>

Props

| Props Name | Type's | Default | Description | | :----------- | ------ | --------- | ----------------------------------------------------- | | car-number | String | '' | car plate number initial value | | active-color | String | '#1a84e7' | input box active color,keyboard tap hover color etc. | | ok-btn-text | String | '确定' | text of ok button |

Custom Events

| Event Name | Parameter | Description | | :--------- | ------------------------------------------------------- | ----------------------------- | | tap-key | {key: '5', keyIndex: 6, value: '苏E12345', valid: true} | emit when taped keyboard | | tap-box | {keyIndex: 0, value: '苏', valid: false} | emit when taped input box | | tap-del | {keyIndex: 6, value: '苏E1234' , valid: false} | emit when taped delete button | | tap-ok | {value: '苏E12345', valid: true} | emit when taped ok button |

keys of Paremeter means:

key: current input character.

keyIndex: current edit(taped/input/delete) key index(from 0 to 7).

value: current car plate number.

valid: validity of current car plate number(true of false).

Contributions

Any contribution to the code (via pull request would be nice) or any part of the documentation and any idea and/or suggestion are very welcome.

Note For any bug fix, the PR should be forked from the master branch. And for any suggestion or additional feature, the PR should be forked from the develop branch, where it can be integrated and rolled out in the next release.

If you are not sure, please ask by openning a new issue.

However, please do not feel bad if your pull requests or contributions do not get merged or implemented into vue-car-plate-keyboard.

Your contributions can, not only help make vue-car-plate-keyboard better, but also push it away from what I intend to use it for. I just hope that you find it useful for your use or learn something useful from its source code. But remember, you can always fork it to make it work the way you want.

License

vue-car-plate-keyboard is open-sourced software licensed under the MIT license.