Skip to content

Commit

Permalink
fix(project): use null value to prevent empty attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
MrWook committed Mar 19, 2020
1 parent 5fda1be commit 7964c88
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/mixins/inputProps.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default ({
},
name: {
type: String,
default: '',
default: null,
},
refName: {
type: String,
Expand All @@ -35,14 +35,14 @@ export default ({
},
placeholder: {
type: String,
default: '',
default: null,
},
tabindex: {
type: [
Number,
String,
],
default: '',
default: null,
},
inline: {
type: Boolean,
Expand All @@ -54,7 +54,7 @@ export default ({
Object,
Array,
],
default: '',
default: null,
},
clearButton: {
type: Boolean,
Expand Down

0 comments on commit 7964c88

Please sign in to comment.