我尝试在日期选择器中显示日期(使用 AntDesign 和 VueJS):
this.formDates.test = moment(this.$store.state.dataStudy.startPassation).format('DD-MM-YYYY HH:mm')
当我这样做时,我的日期格式正确:
console.log(this.formDates.test) // display the correct format 05-07-2021 12:00
但是当我这样做时:
<a-date-picker :default-value="formDates.test" v-model="formDates.startPassation" /><!-- display Invalid Date-->
我的日期选择器中有“无效日期”:-(
为什么 ?