File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -119,6 +119,7 @@ maxMatches | `Number` | 10 | Maximum amount of list items to appear.
119119minMatchingChars | ` Number ` | 2 | Minimum matching characters in query before the typeahead list appears
120120prepend | ` String ` | | Text to be prepended to the ` input-group `
121121append | ` String ` | | Text to be appended to the ` input-group `
122+ disabled | ` Boolean ` | false | Enable or disable input field
122123
123124### Events
124125Name | Description
Original file line number Diff line number Diff line change 1313 :placeholder =" placeholder"
1414 :aria-label =" placeholder"
1515 :value =" inputValue"
16+ :disabled =" disabled"
1617 @focus =" isFocused = true"
1718 @blur =" handleBlur"
1819 @input =" handleInput($event.target.value)"
@@ -72,6 +73,10 @@ export default {
7273 value: {
7374 type: String
7475 },
76+ disabled: {
77+ type: Boolean ,
78+ default: false
79+ },
7580 data: {
7681 type: Array ,
7782 required: true ,
You can’t perform that action at this time.
0 commit comments