element-plus/docs/examples/select-v2/props.vue
qiang 941966f976
feat(components): [select-v2] add props attribute (#14536)
* feat(components): [select-v2] add props attribute

* docs: updata

* docs: updata

* docs: updata
2023-10-25 20:33:07 +08:00

26 lines
527 B
Vue

<template>
<el-select-v2
v-model="value"
:options="options"
:props="props"
placeholder="Please select"
style="width: 240px"
filterable
multiple
/>
</template>
<script lang="ts" setup>
import { ref } from 'vue'
const initials = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j']
const props = {
label: 'name',
value: 'id',
}
const value = ref([])
const options = Array.from({ length: 1000 }).map((_, idx) => ({
id: `Option ${idx + 1}`,
name: `${initials[idx % 10]}${idx}`,
}))
</script>