elementui时间选择器 时分秒
时间: 2023-09-02 15:09:03 浏览: 159
ElementUI日期时间选择器 自定义快捷选项最详细使用代码
要在 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`,包括年月日时分秒。您可以根据自己的需要调整格式。
阅读全文