※前提条件:vue3 的uniapp开发
<u-datetime-picker :show="show2" v-model="valueBirthday" mode="date" closeOnClickOverlay :formatter="formatter" @confirm="confirmBirth" @cancel="cancelBirth" @change="changeBirth" @close="closeBirth"> </u-datetime-picker>
解决办法 使用异步
async confirmBirth(e) {
this.valueBirthday = await uni.$u.timeFormat(e.value, 'yyyy年mm月dd日')
this.show2 = false
}
#hr();
Comment:
#comment_kcaptcha