climblee / uv-ui

uv-ui 破釜沉舟之兼容vue3+2、app、h5、小程序等多端基于uni-app和uView2.x的生态框架,支持单独导入,开箱即用,利剑出击。
MIT License
665 stars 33 forks source link

DatetimePicker跨月选择报错 #115

Open luyun181 opened 1 month ago

luyun181 commented 1 month ago
const valueTime = Number(Date())
const datetimePicker = ref(null)
const now = dayjs().valueOf()//1717121204106
    const nextDay = dayjs().add(3, 'day').valueOf()//1717380404106

    <uv-datetime-picker ref="datetimePicker" v-model="valueTime" mode="datetime" :minDate="now" :maxDate="nextDay"
        @confirm="confirm"></uv-datetime-picker>

image