Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.04 KB

File metadata and controls

30 lines (22 loc) · 1.04 KB
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

Date Ranges

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 the max date value.

<kendo-calendar :value="new Date()"
				:min="new Date(2017, 0, 1)"
				:max="new Date(2020, 11, 31)">
</kendo-calendar>

Suggested Links