使用el-select时出现奇怪的行为
https://docs.scipy.org/doc/numpy/reference/generated/numpy.ndarray.shape.html
el-option在水平选择中显示,我尝试删除所有css,但仍不能正常选择。我的代码简单明了,没有其他设置
<el-select size="mini" v-model="form.status" placeholder="Select">
<el-option label="All Status" value=""></el-option>
<el-option
v-for="item in optionsStatus"
:key="item.value"
:label="item.label"
:value="item.value">
</el-option>
</el-select>
您有这种经验可以解决吗?