title | page_title | description | slug | canonicalLink | position |
---|---|---|---|---|---|
Date Ranges |
Date Ranges - Calendar - Kendo UI for Vue |
Define the start and end dates when working with the Kendo UI Calendar in Vue projects. |
dateranges_calendar_wrapper |
3 |
The Calendar provides options for displaying date ranges.
To define the start date of the range, use the min
property. To define the end date of the range, use the max
property.
The
min
date value has to be lower than themax
date value.
<kendo-calendar :value="new Date()"
:min="new Date(2017, 0, 1)"
:max="new Date(2020, 11, 31)">
</kendo-calendar>