Skip to content

Commit

Permalink
Minor corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
LouisMazel committed Jan 16, 2019
1 parent 1d32dbc commit 86d13af
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,21 @@
<VueInputUi
v-model="value4"
dark
label="is dark"
color="purple"
/>
<br>
<VueInputUi
v-model="value4"
label="is disabled"
disabled
/>
<br>
<VueInputUi
v-model="value5"
label="Number input"
type="number"
/>
</div>
</div>
</div>
Expand All @@ -75,6 +83,7 @@
value2: 'Hello world!',
value3: 'A beautiful input made with VueJs',
value4: null,
value5: null,
darkMode: false
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/VueInputUi/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
name: 'VueInputUi',
props: {
value: { type: [String, Object], required: false, default: null },
label: { type: String, default: 'Select date & time' },
label: { type: String, default: 'Enter text' },
hint: { type: String, default: String },
error: { type: Boolean, default: Boolean },
color: { type: String, default: 'dodgerblue' },
Expand Down

0 comments on commit 86d13af

Please sign in to comment.