vue中怎么修改element UI日期选择器的宽度
时间: 2023-06-24 09:06:23 浏览: 1428
vue element ui 时间选择器设置
可以通过设置 `el-date-picker` 组件的 `picker-options` 属性,来设置日期选择器的宽度。
示例代码如下:
```html
<template>
<el-date-picker
v-model="date"
type="date"
:picker-options="{ width: '300px' }"
></el-date-picker>
</template>
<script>
export default {
data() {
return {
date: ''
}
}
}
</script>
```
在 `picker-options` 中设置 `width` 属性即可修改宽度,例如设置为 `300px`。
阅读全文