.el-select__tags { .el-select__input { width: 50px !important; } }
添加這段代碼即可
<el-select
v-model="value"
multiple
collapse-tags
filterable
style="margin-left: 20px;"
placeholder="請選擇">
<el-option
v-for="item in options"
:key="item.value"
:label="item.label"
:value="item.value">
</el-option>
</el-select>
提示:該問題出現是版本問題引起的,2.7版本已經修復了這個問題,如果您還在使用之前的代碼,就需要使用上面說明的方式單獨處理。
查看文檔:element