答案 0 :(得分:2)
用于更改日期格式的道具称为format
and takes a string instead of a function。
<DatePicker
margin="normal"
disableFuture
openTo="year"
views={["year", "month", "day"]}
value={selectedDate}
onChange={this.handleDateChange}
maxDate={maxdate}
format="DD-MM-YYYY"
/>