vue3-password-strength-meter 1.7.5 → 1.7.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
# 🔓 vue3-password-strength-meter
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
[](https://badge.fury.io/js/vue-password-strength-meter)
|
|
5
|
-
[](https://vuejs.org/)
|
|
3
|
+
|
|
6
4
|
[](https://github.com/apertureless/vue-password-strength-meter/blob/master/LICENSE.txt)
|
|
7
5
|
|
|
8
6
|
Interactive password strength meter based on [zxcvbn](https://github.com/dropbox/zxcvbn) for vue.js
|
|
@@ -11,10 +9,6 @@ Interactive password strength meter based on [zxcvbn](https://github.com/dropbox
|
|
|
11
9
|
<img src="/static/demo.gif" alt="🔓" title="🔓 Demo" />
|
|
12
10
|
</p>
|
|
13
11
|
|
|
14
|
-
## 📺 Demo
|
|
15
|
-
|
|
16
|
-
(https://apertureless.github.io/vue-password-strength-meter/)
|
|
17
|
-
|
|
18
12
|
## 🔧 Install
|
|
19
13
|
|
|
20
14
|
`npm install vue3-password-strength-meter zxcvbn`
|
|
@@ -28,7 +22,7 @@ Interactive password strength meter based on [zxcvbn](https://github.com/dropbox
|
|
|
28
22
|
</template>
|
|
29
23
|
|
|
30
24
|
<script>
|
|
31
|
-
import Password from '
|
|
25
|
+
import Password from 'vue3-password-strength-meter'
|
|
32
26
|
export default {
|
|
33
27
|
components: { Password },
|
|
34
28
|
data: () => ({
|
|
@@ -82,7 +76,7 @@ Interactive password strength meter based on [zxcvbn](https://github.com/dropbox
|
|
|
82
76
|
</template>
|
|
83
77
|
|
|
84
78
|
<script>
|
|
85
|
-
import Password from '
|
|
79
|
+
import Password from 'vue3-password-strength-meter'
|
|
86
80
|
export default {
|
|
87
81
|
components: { Password },
|
|
88
82
|
data: () => ({
|