https://github.com/ofcold/password
A powerful password validator that supports bootstrap4 by default.
https://github.com/ofcold/password
bootstrap4 password
Last synced: 4 months ago
JSON representation
A powerful password validator that supports bootstrap4 by default.
- Host: GitHub
- URL: https://github.com/ofcold/password
- Owner: ofcold
- License: mit
- Created: 2018-07-28T07:27:44.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-07-29T04:39:43.000Z (over 7 years ago)
- Last Synced: 2025-09-20T22:35:09.289Z (6 months ago)
- Topics: bootstrap4, password
- Language: Vue
- Size: 1.26 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# password
A powerful password validator that supports bootstrap4 by default.
## Installation
```bash
npm install ofcold-password --save
```
## Usage
```vue
```
```js
import Vue from 'vue';
import BootstrapVue from 'bootstrap-vue'
import OfcoldPassword from 'ofcold-password';
Vue.use(BootstrapVue);
Vue.use(OfcoldPassword);
```
OR
```js
import Vue from 'vue'
import BootstrapVue from 'bootstrap-vue'
import OfcoldPassword from 'ofcold-password/src/App';
Vue.use(BootstrapVue);
export default {
components: {
OfcoldPassword
}
}
```
