elementui设置input的宽度
时间: 2023-04-23 15:00:32 浏览: 3373
改变el-table宽度
5星 · 资源好评率100%
在 Element UI 中可以使用 `style` 属性来设置输入框的宽度。例如:
```
<el-input style="width: 300px" v-model="inputValue"></el-input>
```
这样就可以将输入框的宽度设置为 300px。也可以使用类似于 `width: 100%` 的方式来设置宽度。
阅读全文