element-plus/docs/examples/select-v2/basic-usage.vue
Ryan2128 bbed5a5e96
fix(components): [select-v2] missing validate action when clear (#4892)
* fix(components): [select-v2] missing validate action when clear

- Fix the bug that missing validate when clear
- Add the same icon and style as the select component

* docs: [select-v2] fix demo render error
2021-12-22 17:37:42 +08:00

37 lines
719 B
Vue

<template>
<el-select-v2
v-model="value"
:options="options"
placeholder="Please select"
size="large"
/>
<el-select-v2
v-model="value"
:options="options"
placeholder="Please select"
/>
<el-select-v2
v-model="value"
:options="options"
placeholder="Please select"
size="small"
/>
</template>
<script lang="ts" setup>
import { ref } from 'vue'
const initials = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j']
const value = ref('')
const options = Array.from({ length: 1000 }).map((_, idx) => ({
value: `Option ${idx + 1}`,
label: `${initials[idx % 10]}${idx}`,
}))
</script>
<style scoped>
.example-showcase .el-select-v2 {
margin-right: 20px;
}
</style>