el-date-picker组件不能<%-- value-format=“yyyy-MM-dd HH:mm:ss“--%>,否则报错
TypeError: Cannot read properties of undefined (reading ‘getHours’)
注释:
value-format=“yyyy-MM-dd HH:mm:ss”
<el-form-item label="出版日期" prop="publishDate">
<el-date-picker
v-model="currentBook.publishDate"
type="datetime"
placeholder="选择出版日期时间"
<%-- value-format="yyyy-MM-dd HH:mm:ss"--%>
style="width: 100%;">
</el-date-picker>
</el-form-item>