-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sean Kegel
committed
Feb 4, 2017
1 parent
f23262b
commit 36dfd5f
Showing
2 changed files
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "vue-password", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"description": "A Vue.js password input component that includes a toggle to show the password and a strength meter using the Dropbox zxcvbn library.", | ||
"author": "Sean Kegel <[email protected]>", | ||
"keywords": [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -277,7 +277,9 @@ | |
*/ | ||
userInputs: { | ||
type: Array, | ||
default: [] | ||
default () { | ||
return [] | ||
} | ||
}, | ||
/** | ||
|