Select 选择器

当选项过多时,使用下拉菜单展示并选择内容。

基础用法

适用广泛的基础单选 v-model 的值为当前被选中的 el-option 的 value 属性值

Select 选择器 - 图1

  1. <template>
  2. <el-select v-model="value" class="m-2" placeholder="Select" size="large">
  3. <el-option
  4. v-for="item in options"
  5. :key="item.value"
  6. :label="item.label"
  7. :value="item.value"
  8. />
  9. </el-select>
  10. <el-select v-model="value" class="m-2" placeholder="Select">
  11. <el-option
  12. v-for="item in options"
  13. :key="item.value"
  14. :label="item.label"
  15. :value="item.value"
  16. />
  17. </el-select>
  18. <el-select v-model="value" class="m-2" placeholder="Select" size="small">
  19. <el-option
  20. v-for="item in options"
  21. :key="item.value"
  22. :label="item.label"
  23. :value="item.value"
  24. />
  25. </el-select>
  26. </template>
  27. <script lang="ts" setup>
  28. import { ref } from 'vue'
  29. const value = ref('')
  30. const options = [
  31. {
  32. value: 'Option1',
  33. label: 'Option1',
  34. },
  35. {
  36. value: 'Option2',
  37. label: 'Option2',
  38. },
  39. {
  40. value: 'Option3',
  41. label: 'Option3',
  42. },
  43. {
  44. value: 'Option4',
  45. label: 'Option4',
  46. },
  47. {
  48. value: 'Option5',
  49. label: 'Option5',
  50. },
  51. ]
  52. </script>

有禁用选项

el-option 中,设定 disabled 值为 true,即可禁用该选项

Select 选择器 - 图2

  1. <template>
  2. <el-select v-model="value" placeholder="Select">
  3. <el-option
  4. v-for="item in options"
  5. :key="item.value"
  6. :label="item.label"
  7. :value="item.value"
  8. :disabled="item.disabled"
  9. />
  10. </el-select>
  11. </template>
  12. <script lang="ts" setup>
  13. import { ref } from 'vue'
  14. const value = ref('')
  15. const options = [
  16. {
  17. value: 'Option1',
  18. label: 'Option1',
  19. },
  20. {
  21. value: 'Option2',
  22. label: 'Option2',
  23. disabled: true,
  24. },
  25. {
  26. value: 'Option3',
  27. label: 'Option3',
  28. },
  29. {
  30. value: 'Option4',
  31. label: 'Option4',
  32. },
  33. {
  34. value: 'Option5',
  35. label: 'Option5',
  36. },
  37. ]
  38. </script>

禁用状态

禁用整个选择器组件

el-select 设置 disabled属性,则整个选择器不可用。

Select 选择器 - 图3

  1. <template>
  2. <el-select v-model="value" disabled placeholder="Select">
  3. <el-option
  4. v-for="item in options"
  5. :key="item.value"
  6. :label="item.label"
  7. :value="item.value"
  8. />
  9. </el-select>
  10. </template>
  11. <script lang="ts" setup>
  12. import { ref } from 'vue'
  13. const value = ref('')
  14. const options = [
  15. {
  16. value: 'Option1',
  17. label: 'Option1',
  18. },
  19. {
  20. value: 'Option2',
  21. label: 'Option2',
  22. },
  23. {
  24. value: 'Option3',
  25. label: 'Option3',
  26. },
  27. {
  28. value: 'Option4',
  29. label: 'Option4',
  30. },
  31. {
  32. value: 'Option5',
  33. label: 'Option5',
  34. },
  35. ]
  36. </script>

可清空单选

包含清空按钮,可将选择器清空为初始状态

el-select 设置 clearable 属性,则可将选择器清空。 需要注意的是,clearable 属性仅适用于单选。

Select 选择器 - 图4

  1. <template>
  2. <el-select v-model="value" clearable placeholder="Select">
  3. <el-option
  4. v-for="item in options"
  5. :key="item.value"
  6. :label="item.label"
  7. :value="item.value"
  8. />
  9. </el-select>
  10. </template>
  11. <script lang="ts" setup>
  12. import { ref } from 'vue'
  13. const value = ref('')
  14. const options = [
  15. {
  16. value: 'Option1',
  17. label: 'Option1',
  18. },
  19. {
  20. value: 'Option2',
  21. label: 'Option2',
  22. },
  23. {
  24. value: 'Option3',
  25. label: 'Option3',
  26. },
  27. {
  28. value: 'Option4',
  29. label: 'Option4',
  30. },
  31. {
  32. value: 'Option5',
  33. label: 'Option5',
  34. },
  35. ]
  36. </script>

基础多选

适用性较广的基础多选,用 Tag 展示已选项

el-select 设置 multiple 属性即可启用多选, 此时 v-model 的值为当前选中值所组成的数组。 默认情况下选中值会以 Tag 的形式展现, 你也可以设置 collapse-tags 属性将它们合并为一段文字。 您可以使用 collapse-tags-tooltip 属性来启用鼠标悬停折叠文字以显示具体所选值的行为。

Select 选择器 - 图5

  1. <template>
  2. <div style="display: inline-block">
  3. <p style="margin-left: 10px">default</p>
  4. <el-select
  5. v-model="value1"
  6. multiple
  7. placeholder="Select"
  8. style="width: 240px"
  9. >
  10. <el-option
  11. v-for="item in options"
  12. :key="item.value"
  13. :label="item.label"
  14. :value="item.value"
  15. />
  16. </el-select>
  17. </div>
  18. <div style="display: inline-block; margin-left: 20px">
  19. <p style="margin-left: 10px">use collapse-tags</p>
  20. <el-select
  21. v-model="value2"
  22. multiple
  23. collapse-tags
  24. placeholder="Select"
  25. style="width: 240px"
  26. >
  27. <el-option
  28. v-for="item in options"
  29. :key="item.value"
  30. :label="item.label"
  31. :value="item.value"
  32. />
  33. </el-select>
  34. </div>
  35. <div style="display: inline-block; margin-left: 20px">
  36. <p style="margin-left: 10px">use collapse-tags-tooltip</p>
  37. <el-select
  38. v-model="value3"
  39. multiple
  40. collapse-tags
  41. collapse-tags-tooltip
  42. placeholder="Select"
  43. style="width: 240px"
  44. >
  45. <el-option
  46. v-for="item in options"
  47. :key="item.value"
  48. :label="item.label"
  49. :value="item.value"
  50. />
  51. </el-select>
  52. </div>
  53. </template>
  54. <script lang="ts" setup>
  55. import { ref } from 'vue'
  56. const value1 = ref([])
  57. const value2 = ref([])
  58. const value3 = ref([])
  59. const options = [
  60. {
  61. value: 'Option1',
  62. label: 'Option1',
  63. },
  64. {
  65. value: 'Option2',
  66. label: 'Option2',
  67. },
  68. {
  69. value: 'Option3',
  70. label: 'Option3',
  71. },
  72. {
  73. value: 'Option4',
  74. label: 'Option4',
  75. },
  76. {
  77. value: 'Option5',
  78. label: 'Option5',
  79. },
  80. ]
  81. </script>

自定义模板

你可以自定义单个选项怎么被渲染

将自定义的 HTML 模板插入 el-option 的 slot 中即可。

Select 选择器 - 图6

  1. <template>
  2. <el-select v-model="value" placeholder="Select">
  3. <el-option
  4. v-for="item in cities"
  5. :key="item.value"
  6. :label="item.label"
  7. :value="item.value"
  8. >
  9. <span style="float: left">{{ item.label }}</span>
  10. <span
  11. style="
  12. float: right;
  13. color: var(--el-text-color-secondary);
  14. font-size: 13px;
  15. "
  16. >{{ item.value }}</span
  17. >
  18. </el-option>
  19. </el-select>
  20. </template>
  21. <script lang="ts" setup>
  22. import { ref } from 'vue'
  23. const value = ref('')
  24. const cities = [
  25. {
  26. value: 'Beijing',
  27. label: 'Beijing',
  28. },
  29. {
  30. value: 'Shanghai',
  31. label: 'Shanghai',
  32. },
  33. {
  34. value: 'Nanjing',
  35. label: 'Nanjing',
  36. },
  37. {
  38. value: 'Chengdu',
  39. label: 'Chengdu',
  40. },
  41. {
  42. value: 'Shenzhen',
  43. label: 'Shenzhen',
  44. },
  45. {
  46. value: 'Guangzhou',
  47. label: 'Guangzhou',
  48. },
  49. ]
  50. </script>

将选项进行分组

你可以为选项进行分组来区分不同的选项

使用 el-option-group 对备选项进行分组,它的 label 属性为分组名

Select 选择器 - 图7

  1. <template>
  2. <el-select v-model="value" placeholder="Select">
  3. <el-option-group
  4. v-for="group in options"
  5. :key="group.label"
  6. :label="group.label"
  7. >
  8. <el-option
  9. v-for="item in group.options"
  10. :key="item.value"
  11. :label="item.label"
  12. :value="item.value"
  13. />
  14. </el-option-group>
  15. </el-select>
  16. </template>
  17. <script lang="ts" setup>
  18. import { ref } from 'vue'
  19. const value = ref('')
  20. const options = [
  21. {
  22. label: 'Popular cities',
  23. options: [
  24. {
  25. value: 'Shanghai',
  26. label: 'Shanghai',
  27. },
  28. {
  29. value: 'Beijing',
  30. label: 'Beijing',
  31. },
  32. ],
  33. },
  34. {
  35. label: 'City name',
  36. options: [
  37. {
  38. value: 'Chengdu',
  39. label: 'Chengdu',
  40. },
  41. {
  42. value: 'Shenzhen',
  43. label: 'Shenzhen',
  44. },
  45. {
  46. value: 'Guangzhou',
  47. label: 'Guangzhou',
  48. },
  49. {
  50. value: 'Dalian',
  51. label: 'Dalian',
  52. },
  53. ],
  54. },
  55. ]
  56. </script>

筛选选项

可以利用筛选功能快速查找选项

el-select 添加 filterable 属性即可启用筛选功能。 默认情况下,Select 会找出所有 label 属性包含输入值的选项。 如果希望使用其他的搜索逻辑,可以通过传入一个 filter-method 来实现。 filter-method 为一个 Function,它会在输入值发生变化时调用,参数为当前输入值。

Select 选择器 - 图8

  1. <template>
  2. <el-select v-model="value" filterable placeholder="Select">
  3. <el-option
  4. v-for="item in options"
  5. :key="item.value"
  6. :label="item.label"
  7. :value="item.value"
  8. />
  9. </el-select>
  10. </template>
  11. <script lang="ts" setup>
  12. import { ref } from 'vue'
  13. const value = ref('')
  14. const options = [
  15. {
  16. value: 'Option1',
  17. label: 'Option1',
  18. },
  19. {
  20. value: 'Option2',
  21. label: 'Option2',
  22. },
  23. {
  24. value: 'Option3',
  25. label: 'Option3',
  26. },
  27. {
  28. value: 'Option4',
  29. label: 'Option4',
  30. },
  31. {
  32. value: 'Option5',
  33. label: 'Option5',
  34. },
  35. ]
  36. </script>

远程搜索

通过输入关键字在服务器上来搜索数据

为了启用远程搜索,需要将 filterableremote 设置为 true,同时传入一个 remote-methodremote-method 为一个 Function,它会在输入值发生变化时调用,参数为当前输入值。 需要注意的是,如果 el-option 是通过 v-for 指令渲染出来的,此时需要为 el-option 添加 key 属性, 且其值需具有唯一性,比如这个例子中的 item.value

Select 选择器 - 图9

  1. <template>
  2. <el-select
  3. v-model="value"
  4. multiple
  5. filterable
  6. remote
  7. reserve-keyword
  8. placeholder="Please enter a keyword"
  9. :remote-method="remoteMethod"
  10. :loading="loading"
  11. >
  12. <el-option
  13. v-for="item in options"
  14. :key="item.value"
  15. :label="item.label"
  16. :value="item.value"
  17. />
  18. </el-select>
  19. </template>
  20. <script lang="ts" setup>
  21. import { onMounted, ref } from 'vue'
  22. interface ListItem {
  23. value: string
  24. label: string
  25. }
  26. const list = ref<ListItem[]>([])
  27. const options = ref<ListItem[]>([])
  28. const value = ref<string[]>([])
  29. const loading = ref(false)
  30. onMounted(() => {
  31. list.value = states.map((item) => {
  32. return { value: `value:${item}`, label: `label:${item}` }
  33. })
  34. })
  35. const remoteMethod = (query: string) => {
  36. if (query) {
  37. loading.value = true
  38. setTimeout(() => {
  39. loading.value = false
  40. options.value = list.value.filter((item) => {
  41. return item.label.toLowerCase().includes(query.toLowerCase())
  42. })
  43. }, 200)
  44. } else {
  45. options.value = []
  46. }
  47. }
  48. const states = [
  49. 'Alabama',
  50. 'Alaska',
  51. 'Arizona',
  52. 'Arkansas',
  53. 'California',
  54. 'Colorado',
  55. 'Connecticut',
  56. 'Delaware',
  57. 'Florida',
  58. 'Georgia',
  59. 'Hawaii',
  60. 'Idaho',
  61. 'Illinois',
  62. 'Indiana',
  63. 'Iowa',
  64. 'Kansas',
  65. 'Kentucky',
  66. 'Louisiana',
  67. 'Maine',
  68. 'Maryland',
  69. 'Massachusetts',
  70. 'Michigan',
  71. 'Minnesota',
  72. 'Mississippi',
  73. 'Missouri',
  74. 'Montana',
  75. 'Nebraska',
  76. 'Nevada',
  77. 'New Hampshire',
  78. 'New Jersey',
  79. 'New Mexico',
  80. 'New York',
  81. 'North Carolina',
  82. 'North Dakota',
  83. 'Ohio',
  84. 'Oklahoma',
  85. 'Oregon',
  86. 'Pennsylvania',
  87. 'Rhode Island',
  88. 'South Carolina',
  89. 'South Dakota',
  90. 'Tennessee',
  91. 'Texas',
  92. 'Utah',
  93. 'Vermont',
  94. 'Virginia',
  95. 'Washington',
  96. 'West Virginia',
  97. 'Wisconsin',
  98. 'Wyoming',
  99. ]
  100. </script>

创建新的选项

可以创建并选中选项中不存在的条目

通过使用 allow-create 属性,用户可以通过输入框创建新项目。 为了使 allow-create 正确的工作, filterable 的值必须为 true. 本例还使用了 default-first-option 属性, 在该属性打开的情况下,按下回车就可以选中当前选项列表中的第一个选项,无需使用鼠标或键盘方向键进行定位。

Select 选择器 - 图10

  1. <template>
  2. <el-select
  3. v-model="value"
  4. multiple
  5. filterable
  6. allow-create
  7. default-first-option
  8. :reserve-keyword="false"
  9. placeholder="Choose tags for your article"
  10. >
  11. <el-option
  12. v-for="item in options"
  13. :key="item.value"
  14. :label="item.label"
  15. :value="item.value"
  16. />
  17. </el-select>
  18. </template>
  19. <script lang="ts" setup>
  20. import { ref } from 'vue'
  21. const value = ref<string[]>([])
  22. const options = [
  23. {
  24. value: 'HTML',
  25. label: 'HTML',
  26. },
  27. {
  28. value: 'CSS',
  29. label: 'CSS',
  30. },
  31. {
  32. value: 'JavaScript',
  33. label: 'JavaScript',
  34. },
  35. ]
  36. </script>

TIP

如果 Select 的绑定值为对象类型,请务必指定 value-key 作为它的唯一性标识。

Select 属性

属性说明类型可选值默认值
model-value / v-model选中项绑定值array / string / number / boolean / object
multiple是否多选booleanfalse
disabled是否禁用booleanfalse
value-key作为 value 唯一标识的键名,绑定值为对象类型时必填stringvalue
size输入框尺寸stringlarge/default/smalldefault
clearable是否可以清空选项booleanfalse
collapse-tags多选时是否将选中值按文字的形式展示booleanfalse
collapse-tags-tooltip当鼠标悬停于折叠标签的文本时,是否显示所有选中的标签。 要使用此属性,collapse-tags属性必须设定为 truebooleantrue / falsefalse
multiple-limitmultiple 属性设置为 true 时,代表多选场景下用户最多可以选择的项目数, 为 0 则不限制number0
nameSelect 输入框的原生 name 属性string
effectTooltip 主题,内置了 dark / light 两种stringstringlight
autocompleteSelect 输入框的原生 autocomplete 属性stringoff
placeholder占位文字stringSelect
filterableSelect 组件是否可筛选booleanfalse
allow-create是否允许用户创建新条目, 只有当 filterable 设置为 true 时才会生效。booleanfalse
filter-method自定义筛选方法function
remote其中的选项是否从服务器远程加载booleanfalse
remote-method自定义远程搜索方法function
loadingSelect 组件是否从远程加载数据booleanfalse
loading-text从服务器加载内容时显示的文本stringLoading
no-match-text搜索条件无匹配时显示的文字,也可以使用 empty 插槽设置stringNo matching data
no-data-text无选项时显示的文字,也可以使用 empty 插槽设置自定义内容stringNo data
popper-classSelect 下拉框的自定义类名string
reserve-keywordmultiplefilter被设置为 true 时,是否在选中一个选项后保留当前的搜索关键词booleantrue
default-first-option是否在输入框按下回车时,选择第一个匹配项。 需配合 filterableremote 使用boolean-false
popper-append-to-body(已废弃)是否将弹出框插入至 body 元素。 在弹出框的定位出现问题时,可将该属性设置为 falseboolean-true
teleported是否将下拉列表插入至 body 元素booleantrue / falsetrue
persistent当下拉选择器未被激活并且persistent设置为false,选择器会被删除。booleantrue / falsetrue
automatic-dropdown对于不可搜索的 Select,是否在输入框获得焦点后自动弹出选项菜单boolean-false
clear-icon自定义清除图标组件string | ComponentCircleClose
fit-input-width下拉框的宽度是否与输入框相同booleanfalse
suffix-icon自定义后缀图标组件string | ComponentArrowUp
tag-type标签类型stringsuccess/info/warning/dangerinfo
validate-event输入时是否触发表单的校验boolean-true

Select 事件

事件名说明回调参数
change选中值发生变化时触发val,目前的选中值
visible-change下拉框出现/隐藏时触发val,出现则为 true,隐藏则为 false
remove-tag多选模式下移除tag时触发val,移除的tag值
clear可清空的单选模式下用户点击清空按钮时触发
blur当 input 失去焦点时触发(event: Event)
focus当 input 获得焦点时触发(event: Event)

Select 插槽

插槽名说明子标签
Option 组件列表Option Group / Option
prefixSelect 组件头部内容
empty无选项时的列表

Option Group 属性

属性说明类型可选值默认值
label分组的组名string
disabled是否将该分组下所有选项置为禁用booleanfalse

Option Group 插槽

插槽名说明子标签
-自定义默认内容Option

Option 属性

属性说明类型可选值默认值
value选项的值string / number / boolean / object
label选项的标签,若不设置则默认与value相同string/number
disabled是否禁用该选项booleanfalse

Option 插槽

插槽名说明
默认插槽

Select 方法

方法名说明参数
focus使选择器的输入框获取焦点-
blur使选择器的输入框失去焦点,并隐藏下拉框-

源代码

组件 Select 选择器 - 图11 文档 Select 选择器 - 图12

贡献者

Select 选择器 - 图13 三咲智子

Select 选择器 - 图14 云游君

Select 选择器 - 图15 JeremyWuuuuu

Select 选择器 - 图16 Alan Wang

Select 选择器 - 图17 Xc

Select 选择器 - 图18 msidolphin

Select 选择器 - 图19 zz

Select 选择器 - 图20 bqy_fe

Select 选择器 - 图21 gjfei

Select 选择器 - 图22 btea

Select 选择器 - 图23 kooriookami

Select 选择器 - 图24 Herrington Darkholme

Select 选择器 - 图25 C.Y.Kun

Select 选择器 - 图26 LIUCHAO

Select 选择器 - 图27 qiang

Select 选择器 - 图28 Carter Li

Select 选择器 - 图29 opengraphica

Select 选择器 - 图30 Zhongxiang Wang

Select 选择器 - 图31 Delyan Haralanov

Select 选择器 - 图32 Aex

Select 选择器 - 图33 Ryan2128

Select 选择器 - 图34 Simona

Select 选择器 - 图35 白雾三语

Select 选择器 - 图36 Hefty

Select 选择器 - 图37 Cheerwhy

Select 选择器 - 图38 Herb Brewer

Select 选择器 - 图39 Muyao

Select 选择器 - 图40 wzrove

Select 选择器 - 图41 BeADre

Select 选择器 - 图42 zeting

Select 选择器 - 图43 JacBiank

Select 选择器 - 图44 bchen1029

Select 选择器 - 图45 blackie

Select 选择器 - 图46 on the field of hope

Select 选择器 - 图47 SuMingJiong

Select 选择器 - 图48 Hades-li

Select 选择器 - 图49 weiqinl