el-option设置宽度
时间: 2023-10-03 13:09:32 浏览: 387
EL-IOT-II实验箱使用说明书
在 Element UI 中,可以通过设置 `el-option` 元素的 `style` 属性来设置宽度。例如,可以通过以下代码将宽度设置为 200px:
```html
<el-select v-model="value">
<el-option
v-for="item in options"
:key="item.value"
:label="item.label"
:value="item.value"
style="width: 200px;"
></el-option>
</el-select>
```
注意,这样设置的宽度是固定的,如果内容过长可能会导致内容被截断。如果需要自适应宽度,可以考虑使用 `el-autocomplete` 组件。
阅读全文