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.
- Host: GitHub
- URL: https://github.com/simulatedgreg/vue-mask
- Owner: SimulatedGREG
- Created: 2016-05-01T09:13:16.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-05-05T04:24:41.000Z (almost 10 years ago)
- Last Synced: 2025-10-19T15:21:20.987Z (4 months ago)
- Language: JavaScript
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
```