0.0.5 • Published 6 years ago

v-unicode v0.0.5

Weekly downloads
14
License
MIT
Repository
github
Last release
6 years ago

v-unicode

Codeship Status Coverage Status Codacy Badge bitHound Overall Score bitHound Dev Dependencies bitHound Code

Vue directive to restrict an input by unicode values. It allows the input to be used just with the defined unicodes.

Install

$ npm install --save v-unicode
$ yarn add v-unicode

Use

import Vue from 'vue'
import vUnicode from 'v-unicode'

Vue.use(vUnicode)
<template>
  <input type="text" v-unicode="{ from: 48, to: 57 }">
  <input type="text" v-unicode="[48, 49, 50, 51, 52, 53, 54, 55, 56, 57]">
</template>

License

MIT License

Style

Standard - JavaScript Style Guide

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago