How does ElementUI's DatePicker date selector set the box for the current date to be displayed on the right?

ElementUI"s DatePicker date selector always displays the date of the current month from the left when making a range date range selection, but I set the selection range to select only dates before that day. In this way, the default display from left to right will cause half of the displayed dates to be unselectable.
how can I set the box for the current date of the DatePicker component to be displayed on the right as shown in the following figure?

Mar.07,2021

usually logically, time is from back to back.
meets your situation, the whole DOM structure changes greatly, but the UI framework does not provide API,
the best way is to write a


you can implement it with two datepicker, and the second unselectable date configuration item is changed to the first selected value


.

then try setting a default time range

  const end = new Date();
  const start = new Date();
  start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);


Hello, have you solved this need?

Menu