项目作者: apertureless

项目描述 :
🔐 Password strength meter based on zxcvbn in vue.js
高级语言: JavaScript
项目地址: git://github.com/apertureless/vue-password-strength-meter.git
创建时间: 2017-01-14T15:40:22Z
项目社区:https://github.com/apertureless/vue-password-strength-meter

开源协议:MIT License

下载


🔓 vue-password-strength-meter

Build Status
npm version
vue2
license

ko-fi

Interactive password strength meter based on zxcvbn for vue.js


🔓

📺 Demo

Demo here

🔧 Install

yarn add vue-password-strength-meter zxcvbn

👈 Usage

  1. <template>
  2. <password v-model="password"></password>
  3. </template>
  4. <script>
  5. import Password from 'vue-password-strength-meter'
  6. export default {
  7. components: { Password },
  8. data: () => ({
  9. password: null
  10. })
  11. }
  12. </script>

👈 With events

  1. <template>
  2. <password
  3. v-model="password"
  4. :toggle="true"
  5. @score="showScore"
  6. @feedback="showFeedback"
  7. ></password>
  8. </template>
  9. <script>
  10. import Password from 'vue-password-strength-meter'
  11. export default {
  12. components: { Password },
  13. data: () => ({
  14. password: null
  15. }),
  16. methods: {
  17. showFeedback ({suggestions, warning}) {
  18. console.log('🙏', suggestions)
  19. console.log('⚠', warning)
  20. },
  21. showScore (score) {
  22. console.log('💯', score)
  23. }
  24. }
  25. }
  26. </script>

With custom input

  1. <template>
  2. <div>
  3. <input type="password" v-model="password">
  4. <password v-model="password" :strength-meter-only="true"></password>
  5. </div>
  6. </template>
  7. <script>
  8. import Password from 'vue-password-strength-meter'
  9. export default {
  10. components: { Password },
  11. data: () => ({
  12. password: null
  13. })
  14. }
  15. </script>

Props

Prop Type Default Value Description
secureLength Number 7 password min length
badge Boolean true display password count badge
toggle Boolean false show button to toggle password visibility
showPassword Boolean false If you are not using the toggle button you can directly show / hide the password with this prop
defaultClass String Password__field input field class
disabledClass String Password__field—disabled disabled input field class
errorClass String Password__badge—error error class for password count badge
successClass String Password__badge—success success class for password count badge
strengthMeterClass String Password__strength-meter strength-meter class
strengthMeterFillClass String Password__strength-meter—fill strength-meter class for individual data fills
showStrengthMeter Boolean true Hide the Strength Meter if you want to implement your own
strengthMeterOnly Boolean false Hides the built-in input if you want to implement your own
labelHide String ‘Hide Password’ Label for the hide icon
labelShow String ‘Show Password’ Label for the show icon
userInputs Array empty array Array of strings that zxcvbn will treat as an extra dictionary
referenceValue String ‘input’ Prop to change the ref of the input. This way you can have the input outside of the component.

Events

Show / Hide Password

💅 Customizing

You can customize the styling of the input field, badge and strength-meter by passing your own css classes
to defaultClass, strengthMeterClass etc.

Build Setup

  1. # install dependencies
  2. npm install
  3. # serve with hot reload at localhost:8080
  4. npm run dev
  5. # build for production with minification
  6. npm run build
  7. # run unit tests
  8. npm run unit
  9. # run all tests
  10. npm test

For detailed explanation on how things work, checkout the guide and docs for vue-loader.

Support

Buy Me A Coffee