An open API service indexing awesome lists of open source software.

https://github.com/simulatedgreg/vue-mask

A Vue.js Plugin for masking input fields.
https://github.com/simulatedgreg/vue-mask

Last synced: 4 months ago
JSON representation

A Vue.js Plugin for masking input fields.

Awesome Lists containing this project

README

          

# vue-mask [in development]

> A Vue.js Plugin for masking input fields.

## Formatting flags
```js
{
'9': /\d/, // any digit
'A': /[A-Z]/, // any uppercase letter
'a': /[a-z]/, // any lowercase letter
'C': /[A-z0-9]/, // any alphanumeric character
'c': /[A-z]/ // any letter
}
```

## Example Usage
```html

```

## Development Setup

``` bash
# install dependencies
npm install

# serve with hot reload at localhost:8080
npm run dev
```