mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
41 lines
857 B
Vue
41 lines
857 B
Vue
|
<template>
|
||
|
<el-select-v2
|
||
|
v-model="value"
|
||
|
filterable
|
||
|
:options="options"
|
||
|
placeholder="Please select"
|
||
|
style="width: 240px; margin-right: 16px; vertical-align: middle"
|
||
|
multiple
|
||
|
/>
|
||
|
<el-select-v2
|
||
|
v-model="value"
|
||
|
disabled
|
||
|
filterable
|
||
|
:options="options"
|
||
|
placeholder="Please select"
|
||
|
style="width: 240px; vertical-align: middle"
|
||
|
multiple
|
||
|
/>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { ref, defineComponent } from 'vue'
|
||
|
|
||
|
const initials = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j']
|
||
|
|
||
|
export default defineComponent({
|
||
|
setup() {
|
||
|
return {
|
||
|
options: ref(
|
||
|
Array.from({ length: 1000 }).map((_, idx) => ({
|
||
|
value: `Option${idx + 1}`,
|
||
|
label: `${initials[idx % 10]}${idx}`,
|
||
|
disabled: idx % 10 === 0,
|
||
|
}))
|
||
|
),
|
||
|
value: ref([]),
|
||
|
}
|
||
|
},
|
||
|
})
|
||
|
</script>
|