<el-select
v-model="value"
placeholder="请选择工点"
size="large"
:teleported="false"
:suffix-icon="CaretBottom"
style="width: 100px"
>
<el-option
v-for="item in options"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
import { CaretBottom } from "@element-plus/icons-vue";