Skip to content

Commit

Permalink
fix(lib): fix default label
Browse files Browse the repository at this point in the history
fix default label
  • Loading branch information
yogakurniawan committed Jul 13, 2020
1 parent 559faa7 commit 333e449
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 15 deletions.
14 changes: 8 additions & 6 deletions dist/vue-tel-input-vuetify.esm.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/vue-tel-input-vuetify.min.js

Large diffs are not rendered by default.

14 changes: 8 additions & 6 deletions dist/vue-tel-input-vuetify.umd.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/vue-tel-input-vuetify.vue
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ export default {
},
label: {
type: String,
default: 'Enter a Phone Number',
default: () => getDefault('label'),
},
placeholder: {
type: String,
Expand Down
2 changes: 1 addition & 1 deletion src/lib/vue-tel-input-vuetify.vue
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ export default {
},
label: {
type: String,
default: 'Enter a Phone Number',
default: () => getDefault('label'),
},
placeholder: {
type: String,
Expand Down

1 comment on commit 333e449

@yogakurniawan
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#10

Please sign in to comment.