QML Basic Type: date
The date type refers to a date value.
To create a date value, specify it as a "YYYY-MM-DD" string:
MyDatePicker { minDate: "2000-01-01"; maxDate: "2020-12-31" }
To read a date value returned from a C++ extension class, use Qt.formatDate() and Qt.formatDateTime().
When integrating with C++, note that any QDate value passed into QML from C++ is automatically converted into a date value, and vice-versa.
Note that the date type has comparison semantics which match those of the JavaScript Date object. To compare the value of two date properties, you should compare their "toString()" values.
This basic type is provided by the QML language.
See also QML Basic Types.