2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-06-10 07:52:23 +03:00

doc content updates

This commit is contained in:
Jeff
2019-04-01 14:42:21 -07:00
parent db43a67801
commit b5e239c49c
4 changed files with 22 additions and 13 deletions
+8 -3
View File
@@ -29,7 +29,8 @@ component. No further configuration is necessary.
When `options` is an array of objects, the component must generate a label to be shown as the
options text. By default, `vue-select` will attempt to render `option.label` as the option label.
You can set your own label to match your source data using the `label` prop.
You might not have a `label` key in your objects, so you can set your own label to match your
source data using the `label {String}` prop.
For example, consider an object with `countryCode` and `countryName` properties:
@@ -50,7 +51,7 @@ If you wanted to display `Canada` in the dropdown, you'd use the `countryName` k
## Null / Empty Options
`vue-select` requires the `option` property to be an `array`. If you are using Vue in development
`vue-select` requires the `options` prop to be an `array`. If you are using Vue in development
mode, you will get warnings attempting to pass anything other than an `array` to the `options` prop.
If you need a `null`/`empty` value, use an empty array `[]`.
@@ -59,4 +60,8 @@ If you need a `null`/`empty` value, use an empty array `[]`.
To allow input that's not present within the options, set the `taggable` prop to true.
If you want new tags to be pushed to the options list, set `push-tags` to true.
<v-select taggable />
```html
<v-select taggable multiple push-tags />
```
<v-select taggable multiple push-tags />