el-date-picker type="daterange"输入框长度
时间: 2023-10-21 13:20:28 浏览: 192
ngx-input-date-range-picker:角度输入日期范围选择器库
el-date-picker组件的输入框长度是可以设置的,可以通过设置其属性 `input-class` 来自定义输入框的样式,然后在CSS中设置宽度即可。例如:
```html
<el-date-picker type="daterange" input-class="my-input"></el-date-picker>
```
```css
.my-input input {
width: 200px;
}
```
这样就可以将输入框的宽度设置为200像素。当然也可以根据自己的需求进行调整。
阅读全文