0.1.8 • Published 5 years ago

vue-password-validator v0.1.8

Weekly downloads
18
License
MIT
Repository
github
Last release
5 years ago

Vue Password Validator

Lightweight 🔓 password validator Component in vue.js

Demo

You can find a demo Here.

Installation

Using npm

npm i vue-password-validator --save

or Using yarn

yarn add vue-password-validator 

Usage

This component cannot be used through the <script>tag! You will need to import it this way:

<template>
  <div class="app">
      <password-validator></password-validator>
  </div>      
</template>

import Vue from 'vue';
import PasswordValidator from 'vue-password-validator';
export default {
	components: {
		PasswordValidator
	}
}

Styling

The component is styled with a width of 100%. You can simply change that by putting it in a container and give that container a specific width:

.container {
  width : 500px;
}
0.1.8

5 years ago

0.1.7

5 years ago

0.1.6

5 years ago

0.1.5

5 years ago

0.1.4

5 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago