elementui时间选择器 时分秒
时间: 2023-09-02 19:09:03 浏览: 158
时间选择器,可以到时分秒
4星 · 用户满意度95%
要在 ElementUI 时间选择器中包含时分秒,可以使用 `picker-options` 属性。例如:
```html
<el-date-picker
v-model="datetime"
type="datetime"
:picker-options="{ format: 'yyyy-MM-dd HH:mm:ss' }"
></el-date-picker>
```
这里的 `picker-options` 属性指定了时间格式为 `yyyy-MM-dd HH:mm:ss`,包括年月日时分秒。您可以根据自己的需要调整格式。
阅读全文