2016-11-10 13:46:55 +00:00
< script >
export default {
data() {
return {
list: null,
options: [{
value: 'Option1',
label: 'Option1'
}, {
value: 'Option2',
label: 'Option2'
}, {
value: 'Option3',
label: 'Option3'
}, {
value: 'Option4',
label: 'Option4'
}, {
value: 'Option5',
label: 'Option5'
}],
options2: [{
value: 'Option1',
label: 'Option1'
}, {
value: 'Option2',
label: 'Option2',
disabled: true
}, {
value: 'Option3',
label: 'Option3'
}, {
value: 'Option4',
label: 'Option4'
}, {
value: 'Option5',
label: 'Option5'
}],
options3: [{
label: 'Popular cities',
options: [{
value: 'Shanghai',
label: 'Shanghai'
}, {
value: 'Beijing',
label: 'Beijing'
}]
}, {
label: 'City Name',
options: [{
value: 'Chengdu',
label: 'Chengdu'
}, {
value: 'Shenzhen',
label: 'Shenzhen'
}, {
value: 'Guangzhou',
label: 'Guangzhou'
}, {
value: 'Dalian',
label: 'Dalian'
}]
}],
options4: [],
2016-11-30 15:17:53 +00:00
options5: [{
value: 'HTML',
label: 'HTML'
}, {
value: 'CSS',
label: 'CSS'
}, {
value: 'JavaScript',
label: 'JavaScript'
}],
2016-11-10 13:46:55 +00:00
cities: [{
value: 'Beijing',
label: 'Beijing'
}, {
value: 'Shanghai',
label: 'Shanghai'
}, {
value: 'Nanjing',
label: 'Nanjing'
}, {
value: 'Chengdu',
label: 'Chengdu'
}, {
value: 'Shenzhen',
label: 'Shenzhen'
}, {
value: 'Guangzhou',
label: 'Guangzhou'
}],
value: '',
value2: '',
value3: '',
value4: '',
value5: [],
value6: '',
2016-11-30 15:17:53 +00:00
value7: '',
2016-11-10 13:46:55 +00:00
value8: '',
value9: [],
2016-11-30 15:17:53 +00:00
value10: [],
2016-11-10 13:46:55 +00:00
loading: false,
states: ["Alabama", "Alaska", "Arizona", "Arkansas", "California", "Colorado", "Connecticut", "Delaware", "Florida", "Georgia", "Hawaii", "Idaho", "Illinois", "Indiana", "Iowa", "Kansas", "Kentucky", "Louisiana", "Maine", "Maryland", "Massachusetts", "Michigan", "Minnesota", "Mississippi", "Missouri", "Montana", "Nebraska", "Nevada", "New Hampshire", "New Jersey", "New Mexico", "New York", "North Carolina", "North Dakota", "Ohio", "Oklahoma", "Oregon", "Pennsylvania", "Rhode Island", "South Carolina", "South Dakota", "Tennessee", "Texas", "Utah", "Vermont", "Virginia", "Washington", "West Virginia", "Wisconsin", "Wyoming"]
};
},
2017-05-18 04:28:45 +00:00
2016-11-10 13:46:55 +00:00
mounted() {
this.list = this.states.map(item => { return { value: item, label: item }; });
},
methods: {
remoteMethod(query) {
if (query !== '') {
this.loading = true;
setTimeout(() => {
this.loading = false;
this.options4 = this.list.filter(item => item.label.toLowerCase().indexOf(query.toLowerCase()) > -1);
}, 200);
} else {
this.options4 = [];
}
}
}
};
< / script >
2017-05-18 04:28:45 +00:00
< style >
.demo-select .el-select {
width: 240px;
}
< / style >
2016-11-10 13:46:55 +00:00
## Select
2016-11-11 11:06:27 +00:00
When there are plenty of options, use a drop-down menu to display and select desired ones.
2016-11-10 13:46:55 +00:00
2016-11-11 11:06:27 +00:00
### Basic usage
2016-11-10 13:46:55 +00:00
2016-11-11 11:06:27 +00:00
:::demo `v-model` is the value of `el-option` that is currently selected.
2016-11-10 13:46:55 +00:00
```html
< template >
2016-11-11 11:06:27 +00:00
< el-select v-model = "value" placeholder = "Select" >
2016-11-10 13:46:55 +00:00
< el-option
v-for="item in options"
2017-04-28 06:03:42 +00:00
:key="item.value"
2016-11-10 13:46:55 +00:00
:label="item.label"
:value="item.value">
< / el-option >
< / el-select >
< / template >
< script >
export default {
data() {
return {
options: [{
value: 'Option1',
label: 'Option1'
}, {
value: 'Option2',
label: 'Option2'
}, {
value: 'Option3',
label: 'Option3'
}, {
value: 'Option4',
label: 'Option4'
}, {
value: 'Option5',
label: 'Option5'
}],
value: ''
}
}
}
< / script >
```
:::
2016-11-11 11:06:27 +00:00
### Disabled option
2016-11-10 13:46:55 +00:00
2016-11-11 11:06:27 +00:00
:::demo Set the value of `disabled` in `el-option` to `true` to disable this option.
2016-11-10 13:46:55 +00:00
```html
< template >
2016-11-11 11:06:27 +00:00
< el-select v-model = "value2" placeholder = "Select" >
2016-11-10 13:46:55 +00:00
< el-option
v-for="item in options2"
2017-04-28 06:03:42 +00:00
:key="item.value"
2016-11-10 13:46:55 +00:00
:label="item.label"
:value="item.value"
:disabled="item.disabled">
< / el-option >
< / el-select >
< / template >
< script >
export default {
data() {
return {
options2: [{
value: 'Option1',
label: 'Option1'
}, {
value: 'Option2',
label: 'Option2',
disabled: true
}, {
value: 'Option3',
label: 'Option3'
}, {
value: 'Option4',
label: 'Option4'
}, {
value: 'Option5',
label: 'Option5'
}],
value2: ''
}
}
}
< / script >
```
:::
2016-11-11 11:06:27 +00:00
### Disabled select
2016-11-10 13:46:55 +00:00
2016-11-11 11:06:27 +00:00
Disable the whole component.
2016-11-10 13:46:55 +00:00
2016-11-11 11:06:27 +00:00
:::demo Set `disabled` of `el-select` to make it disabled.
2016-11-10 13:46:55 +00:00
```html
< template >
2016-11-11 11:06:27 +00:00
< el-select v-model = "value3" disabled placeholder = "Select" >
2016-11-10 13:46:55 +00:00
< el-option
v-for="item in options"
2017-04-28 06:03:42 +00:00
:key="item.value"
2016-11-10 13:46:55 +00:00
:label="item.label"
:value="item.value">
< / el-option >
< / el-select >
< / template >
2017-05-18 04:28:45 +00:00
2016-11-10 13:46:55 +00:00
< script >
export default {
data() {
return {
options: [{
value: 'Option1',
label: 'Option1'
}, {
value: 'Option2',
label: 'Option2'
}, {
value: 'Option3',
label: 'Option3'
}, {
value: 'Option4',
label: 'Option4'
}, {
value: 'Option5',
label: 'Option5'
}],
value3: ''
}
}
}
< / script >
```
:::
2016-11-11 11:06:27 +00:00
### Clearable single select
2016-11-10 13:46:55 +00:00
2016-11-11 11:06:27 +00:00
You can clear Select using a clear icon.
2016-11-10 13:46:55 +00:00
2016-11-11 11:06:27 +00:00
:::demo Set `clearable` attribute for `el-select` and a clear icon will appear. Note that `clearable` is only for single select.
2016-11-10 13:46:55 +00:00
```html
< template >
2016-11-11 11:06:27 +00:00
< el-select v-model = "value4" clearable placeholder = "Select" >
2016-11-10 13:46:55 +00:00
< el-option
v-for="item in options"
2017-04-28 06:03:42 +00:00
:key="item.value"
2016-11-10 13:46:55 +00:00
:label="item.label"
:value="item.value">
< / el-option >
< / el-select >
< / template >
< script >
export default {
data() {
return {
options: [{
value: 'Option1',
label: 'Option1'
}, {
value: 'Option2',
label: 'Option2'
}, {
value: 'Option3',
label: 'Option3'
}, {
value: 'Option4',
label: 'Option4'
}, {
value: 'Option5',
label: 'Option5'
}],
value4: ''
}
}
}
< / script >
```
:::
2016-11-11 11:06:27 +00:00
### Basic multiple select
2016-11-10 13:46:55 +00:00
2016-11-11 11:06:27 +00:00
Multiple select uses tags to display selected options.
2016-11-10 13:46:55 +00:00
2016-11-11 11:06:27 +00:00
:::demo Set `multiple` attribute for `el-select` to enable multiple mode. In this case, the value of `v-model` will be an array of selected options.
2016-11-10 13:46:55 +00:00
```html
< template >
2016-11-11 11:06:27 +00:00
< el-select v-model = "value5" multiple placeholder = "Select" >
2016-11-10 13:46:55 +00:00
< el-option
v-for="item in options"
2017-04-28 06:03:42 +00:00
:key="item.value"
2016-11-10 13:46:55 +00:00
:label="item.label"
:value="item.value">
< / el-option >
< / el-select >
< / template >
< script >
export default {
data() {
return {
options: [{
value: 'Option1',
label: 'Option1'
}, {
value: 'Option2',
label: 'Option2'
}, {
value: 'Option3',
label: 'Option3'
}, {
value: 'Option4',
label: 'Option4'
}, {
value: 'Option5',
label: 'Option5'
}],
value5: []
}
}
}
< / script >
```
:::
2016-11-11 11:06:27 +00:00
### Custom template
2016-11-10 13:46:55 +00:00
2016-11-11 11:06:27 +00:00
You can customize HTML templates for options.
2016-11-10 13:46:55 +00:00
2016-11-11 11:06:27 +00:00
:::demo Insert customized HTML templates into the slot of `el-option` .
2016-11-10 13:46:55 +00:00
```html
< template >
2016-11-11 11:06:27 +00:00
< el-select v-model = "value6" placeholder = "Select" >
2016-11-10 13:46:55 +00:00
< el-option
v-for="item in cities"
2017-04-28 06:03:42 +00:00
:key="item.value"
2016-11-10 13:46:55 +00:00
:label="item.label"
:value="item.value">
< span style = "float: left" > {{ item.label }}< / span >
< span style = "float: right; color: #8492a6 ; font-size: 13px" > {{ item.value }}</ span >
< / el-option >
< / el-select >
< / template >
< script >
export default {
data() {
return {
cities: [{
value: 'Beijing',
label: 'Beijing'
}, {
value: 'Shanghai',
label: 'Shanghai'
}, {
value: 'Nanjing',
label: 'Nanjing'
}, {
value: 'Chengdu',
label: 'Chengdu'
}, {
value: 'Shenzhen',
label: 'Shenzhen'
}, {
value: 'Guangzhou',
label: 'Guangzhou'
}],
value6: ''
}
}
}
< / script >
```
:::
### Grouping
2016-11-11 11:06:27 +00:00
Display options in groups.
2016-11-10 13:46:55 +00:00
2016-11-11 11:06:27 +00:00
:::demo Use `el-option-group` to group the options, and its `label` attribute stands for the name of the group.
2016-11-10 13:46:55 +00:00
```html
< template >
2016-11-11 11:06:27 +00:00
< el-select v-model = "value7" placeholder = "Select" >
2016-11-10 13:46:55 +00:00
< el-option-group
v-for="group in options3"
2017-04-28 06:03:42 +00:00
:key="group.label"
2016-11-10 13:46:55 +00:00
:label="group.label">
< el-option
v-for="item in group.options"
2017-04-28 06:03:42 +00:00
:key="item.value"
2016-11-10 13:46:55 +00:00
:label="item.label"
:value="item.value">
< / el-option >
< / el-option-group >
< / el-select >
< / template >
< script >
export default {
data() {
return {
options3: [{
label: 'Popular cities',
options: [{
value: 'Shanghai',
label: 'Shanghai'
}, {
value: 'Beijing',
label: 'Beijing'
}]
}, {
label: 'City name',
options: [{
value: 'Chengdu',
label: 'Chengdu'
}, {
value: 'Shenzhen',
label: 'Shenzhen'
}, {
value: 'Guangzhou',
label: 'Guangzhou'
}, {
value: 'Dalian',
label: 'Dalian'
}]
}],
value7: ''
}
}
}
< / script >
```
:::
2016-11-11 11:06:27 +00:00
### Option filtering
2016-11-10 13:46:55 +00:00
2016-11-11 11:06:27 +00:00
You can filter options for your desired ones.
2016-11-10 13:46:55 +00:00
2017-02-18 16:50:55 +00:00
:::demo Adding `filterable` to `el-select` enables filtering. By default, Select will find all the options whose `label` attribute contains the input value. If you prefer other filtering strategies, you can pass the `filter-method` . `filter-method` is a `Function` that gets called when the input value changes, and its parameter is the current input value.
2016-11-10 13:46:55 +00:00
```html
< template >
2016-11-11 11:06:27 +00:00
< el-select v-model = "value8" filterable placeholder = "Select" >
2016-11-10 13:46:55 +00:00
< el-option
v-for="item in options"
2017-04-28 06:03:42 +00:00
:key="item.value"
2016-11-10 13:46:55 +00:00
:label="item.label"
:value="item.value">
< / el-option >
< / el-select >
< / template >
< script >
export default {
data() {
return {
options: [{
value: 'Option1',
label: 'Option1'
}, {
value: 'Option2',
label: 'Option2'
}, {
value: 'Option3',
label: 'Option3'
}, {
value: 'Option4',
label: 'Option4'
}, {
value: 'Option5',
label: 'Option5'
}],
value8: ''
}
}
}
< / script >
```
:::
### Remote Search
2016-11-11 11:06:27 +00:00
Enter keywords and search data from server.
2016-11-10 13:46:55 +00:00
2016-11-11 11:06:27 +00:00
:::demo Set the value of `filterable` and `remote` with `true` to enable remote search, and you should pass the `remote-method` . `remote-method` is a `Function` that gets called when the input value changes, and its parameter is the current input value. Note that if `el-option` is rendered with the `v-for` directive, you should add the `key` attribute for `el-option` . Its value needs to be unique, such as `item.value` in the following example.
2016-11-10 13:46:55 +00:00
```html
< template >
< el-select
v-model="value9"
multiple
filterable
remote
placeholder="Please enter a keyword"
:remote-method="remoteMethod"
:loading="loading">
< el-option
v-for="item in options4"
:key="item.value"
:label="item.label"
:value="item.value">
< / el-option >
< / el-select >
< / template >
< script >
export default {
data() {
return {
options4: [],
value9: [],
list: [],
loading: false,
states: ["Alabama", "Alaska", "Arizona",
"Arkansas", "California", "Colorado",
"Connecticut", "Delaware", "Florida",
"Georgia", "Hawaii", "Idaho", "Illinois",
"Indiana", "Iowa", "Kansas", "Kentucky",
"Louisiana", "Maine", "Maryland",
"Massachusetts", "Michigan", "Minnesota",
"Mississippi", "Missouri", "Montana",
"Nebraska", "Nevada", "New Hampshire",
"New Jersey", "New Mexico", "New York",
"North Carolina", "North Dakota", "Ohio",
"Oklahoma", "Oregon", "Pennsylvania",
"Rhode Island", "South Carolina",
"South Dakota", "Tennessee", "Texas",
"Utah", "Vermont", "Virginia",
"Washington", "West Virginia", "Wisconsin",
"Wyoming"]
}
},
mounted() {
this.list = this.states.map(item => {
return { value: item, label: item };
});
},
methods: {
remoteMethod(query) {
if (query !== '') {
this.loading = true;
setTimeout(() => {
this.loading = false;
this.options4 = this.list.filter(item => {
return item.label.toLowerCase()
.indexOf(query.toLowerCase()) > -1;
});
}, 200);
} else {
this.options4 = [];
}
}
}
}
< / script >
```
:::
2016-11-30 15:17:53 +00:00
### Create new items
Create and select new items that are not included in select options
:::demo By using the `allow-create` attribute, users can create new items by typing in the input box. Note that for `allow-create` to work, `filterable` must be `true` .
```html
< template >
< el-select
v-model="value10"
multiple
filterable
allow-create
placeholder="Choose tags for your article">
< el-option
v-for="item in options5"
2017-04-28 06:03:42 +00:00
:key="item.value"
2016-11-30 15:17:53 +00:00
:label="item.label"
:value="item.value">
< / el-option >
< / el-select >
< / template >
< script >
export default {
data() {
return {
options5: [{
value: 'HTML',
label: 'HTML'
}, {
value: 'CSS',
label: 'CSS'
}, {
value: 'JavaScript',
label: 'JavaScript'
}],
value10: []
}
}
}
< / script >
```
:::
2017-07-18 03:23:43 +00:00
:::tip
If the binding value of Select is an object, make sure to assign `value-key` as its unique identity key name.
:::
2016-11-11 11:06:27 +00:00
### Select Attributes
| Attribute | Description | Type | Accepted Values | Default |
2016-11-10 13:46:55 +00:00
|---------- |-------------- |---------- |-------------------------------- |-------- |
2016-11-11 11:06:27 +00:00
| multiple | whether multiple-select is activated | boolean | — | false |
| disabled | whether Select is disabled | boolean | — | false |
2017-07-18 03:23:43 +00:00
| value-key | unique identity key name for value, required when value is an object | string | — | value |
2016-12-13 14:42:01 +00:00
| size | size of Input | string | large/small/mini | — |
2016-11-11 11:06:27 +00:00
| clearable | whether single select can be cleared | boolean | — | false |
2016-11-28 14:34:03 +00:00
| multiple-limit | maximum number of options user can select when `multiple` is `true` . No limit when set to 0 | number | — | 0 |
2016-11-10 13:46:55 +00:00
| name | the name attribute of select input | string | — | — |
2016-11-11 11:06:27 +00:00
| placeholder | placeholder | string | — | Select |
| filterable | whether Select is filterable | boolean | — | false |
2016-11-30 15:17:53 +00:00
| allow-create | whether creating new items is allowed. To use this, `filterable` must be true | boolean | — | false |
2016-11-11 11:06:27 +00:00
| filter-method | custom filter method | function | — | — |
| remote | whether options are loaded from server | boolean | — | false |
| remote-method | custom remote search method | function | — | — |
| loading | whether Select is loading data from server | boolean | — | false |
2016-12-20 01:11:10 +00:00
| loading-text | displayed text while loading data from server | string | — | Loading |
| no-match-text | displayed text when no data matches the filtering query | string | — | No matching data |
| no-data-text | displayed text when there is no options | string | — | No data |
2016-12-20 08:38:47 +00:00
| popper-class | custom class name for Select's dropdown | string | — | — |
2017-05-17 09:23:04 +00:00
| default-first-option | select first matching option on enter key. Use with `filterable` or `remote` | boolean | - | false |
2016-11-10 13:46:55 +00:00
### Select Events
2016-11-11 11:06:27 +00:00
| Event Name | Description | Parameters |
2016-11-10 13:46:55 +00:00
|---------|---------|---------|
2016-11-11 11:06:27 +00:00
| change | triggers when the selected value changes | current selected value |
2016-12-20 01:11:10 +00:00
| visible-change | triggers when the dropdown appears/disappears | true when it appears, and false otherwise |
2017-03-24 08:57:22 +00:00
| remove-tag | triggers when a tag is removed in multiple mode | removed tag value |
2017-05-29 03:27:43 +00:00
| clear | triggers when the clear icon is clicked in a clearable Select | — |
2017-07-18 04:09:03 +00:00
| blur | triggers when Input blurs | (event: Event) |
| focus | triggers when Input focuses | (event: Event) |
2016-11-10 13:46:55 +00:00
### Option Group Attributes
2016-11-11 11:06:27 +00:00
| Attribute | Description | Type | Accepted Values | Default |
2016-11-10 13:46:55 +00:00
|---------- |-------------- |---------- |-------------------------------- |-------- |
2016-11-11 11:06:27 +00:00
| label | name of the group | string | — | — |
| disabled | whether to disable all options in this group | boolean | — | false |
2016-11-10 13:46:55 +00:00
### Option Attributes
2016-11-11 11:06:27 +00:00
| Attribute | Description | Type | Accepted Values | Default |
2016-11-10 13:46:55 +00:00
|---------- |-------------- |---------- |-------------------------------- |-------- |
2016-11-11 11:06:27 +00:00
| value | value of option | string/number/object | — | — |
| label | label of option, same as `value` if omitted | string/number | — | — |
| disabled | whether option is disabled | boolean | — | false |
2016-11-10 13:46:55 +00:00
2017-07-18 05:47:35 +00:00
### Methods
| Method | Description | Parameters |
|------|--------|-------|
| focus | focus the Input component | - |