Skip to content

Commit 1d7ab52

Browse files
committed
Updated README
1 parent c17d27f commit 1d7ab52

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,18 @@ And arrays of objects
5353
```html
5454
<v-select :options="[{value: 1, text: 'Item 1'}, {value: 2, text: 'Item 2'}]" />
5555
```
56+
57+
## Props
58+
59+
| parameter | description | type | default | acceptable value |
60+
| -------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------- | ------------ | ---------------- |
61+
| disabled | disables select | Boolean | false | |
62+
| disabledProp | allows to disable specific options. If an option has this prop set to a truthy value it will disable the option. | String | disabled | |
63+
| labelNotFound | text displayed when no option is found in the search results | String | No results matched ||
64+
| labelSearchPlaceholder | placeholder text for search input | String | Search | |
65+
| options | list of options | Array | [] | |
66+
| searchable | display search input | Boolean | false | |
67+
| showDefaultOption | sets the select title is set as an option | Boolean | false | |
68+
| textProp | the option's prop that is displayed as the option's text | String | text | |
69+
| valueProp | the option's prop that is used to find the selected value | String | value |
70+

0 commit comments

Comments
 (0)