100字范文,内容丰富有趣,生活中的好帮手!
100字范文 > vant日历组件van-calendar默认时间的坑

vant日历组件van-calendar默认时间的坑

时间:2021-11-11 09:07:50

相关推荐

vant日历组件van-calendar默认时间的坑

<van-cell title="选择日期区间" :value="date" @click="showDate = true" /><van-calendar v-model="showDate" type="range" @confirm="onConfirm" :default-date="defaultDate" :min-date="minDate" />

默认时间格式必须为new Date()

const start = new Date()start.setTime(start.getTime() - 3600 * 1000 * 24 * 7)this.defaultDate = [start, new Date()]

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。