mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-12 12:25:22 +08:00
5844947198
* refactor(components): [select&select-v2] refactor components * refactor(components): [select-v2] * refactor(components): update * refactor(components): update * refactor(components): [select-v2] update * refactor(components): update * refactor(components): update * refactor(components): update type * refactor(components): update * refactor(components): update * refactor(components): update style * refactor(components): update docs * refactor(components): update * refactor(components): fix #15323 * refactor(theme-chalk): update * refactor(components): update * refactor(components): update * refactor(components): update * refactor(components): fix bugs * fix(components): fix issue * fix(components): update * fix(components): fix some bug * feat(components): update * feat(components): add tag slot * feat(components): update * fix(components): update * style(theme-chalk): update style * fix(theme-chalk): update * feat(theme-chalk): update * fix(components): update * feat: update * feat: update * feat: update * feat(components): update
95 lines
1.7 KiB
Vue
95 lines
1.7 KiB
Vue
<template>
|
|
<el-select
|
|
v-model="value"
|
|
multiple
|
|
clearable
|
|
collapse-tags
|
|
placeholder="Select"
|
|
popper-class="custom-header"
|
|
:max-collapse-tags="1"
|
|
style="width: 240px"
|
|
>
|
|
<template #header>
|
|
<el-checkbox
|
|
v-model="checkAll"
|
|
:indeterminate="indeterminate"
|
|
@change="handleCheckAll"
|
|
>
|
|
All
|
|
</el-checkbox>
|
|
</template>
|
|
<el-option
|
|
v-for="item in cities"
|
|
:key="item.value"
|
|
:label="item.label"
|
|
:value="item.value"
|
|
/>
|
|
</el-select>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref, watch } from 'vue'
|
|
|
|
import type { CheckboxValueType } from 'element-plus'
|
|
|
|
const checkAll = ref(false)
|
|
const indeterminate = ref(false)
|
|
const value = ref<CheckboxValueType[]>([])
|
|
const cities = ref([
|
|
{
|
|
value: 'Beijing',
|
|
label: 'Beijing',
|
|
},
|
|
{
|
|
value: 'Shanghai',
|
|
label: 'Shanghai',
|
|
},
|
|
{
|
|
value: 'Nanjing',
|
|
label: 'Nanjing',
|
|
},
|
|
{
|
|
value: 'Chengdu',
|
|
label: 'Chengdu',
|
|
},
|
|
{
|
|
value: 'Shenzhen',
|
|
label: 'Shenzhen',
|
|
},
|
|
{
|
|
value: 'Guangzhou',
|
|
label: 'Guangzhou',
|
|
},
|
|
])
|
|
|
|
watch(value, (val) => {
|
|
if (val.length === 0) {
|
|
checkAll.value = false
|
|
indeterminate.value = false
|
|
} else if (val.length === cities.value.length) {
|
|
checkAll.value = true
|
|
indeterminate.value = false
|
|
} else {
|
|
indeterminate.value = true
|
|
}
|
|
})
|
|
|
|
const handleCheckAll = (val: CheckboxValueType) => {
|
|
indeterminate.value = false
|
|
if (val) {
|
|
value.value = cities.value.map((_) => _.value)
|
|
} else {
|
|
value.value = []
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.custom-header {
|
|
.el-checkbox {
|
|
display: flex;
|
|
height: unset;
|
|
}
|
|
}
|
|
</style>
|