<a-range-pickerstyle="width: 100%":disabled-date="disabledDate"v-model:value="time"valueFormat="YYYY-MM-DD"
/>
valueFormat设置时间格式YYYY-MM-DD
通过dayjs获取时间,return过滤后的时间
const disabledDate = (current: Dayjs) => {return current && current < dayjs().subtract(1, 'day'); // 可选今天以及以后return current && current < dayjs().endOf('day'); // 可选明天及以后};