The Kendo UI for Vue Date Inputs enable the user to pick up dates for scheduling appointments.
The Date Inputs components are part of the Kendo UI for Vue library which provides native Kendo UI components for the Vue ecosystem and are available under thekendo-vue-dateinputs NPM package.
The following example demonstrates the Calendar, DateInput, DatePicker, TimePicker, DateTimePicker and DateRangePicker components in action.
To initialize the Date Inputs, either:
To use the Kendo UI for Vue Native Date Inputs with CDN, follow the below steps:
dateinput andintl packages.<scriptsrc="https://unpkg.com/@progress/kendo-vue-intl@latest/dist/cdn/js/kendo-vue-intl.js"></script><scriptsrc="https://unpkg.com/@progress/kendo-vue-dateinputs@latest/dist/cdn/js/kendo-vue-dateinputs.js"></script> // Load the Kendo Default Theme<linkrel="stylesheet"href="https://unpkg.com/@progress/kendo-theme-default@latest/dist/all.css"> // Load the Kendo Bootstrap Theme<linkrel="stylesheet"href="https://unpkg.com/@progress/kendo-theme-bootstrap@latest/dist/all.css"><linkhref="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"> // To load the Kendo Material Theme<linkrel="stylesheet"href="https://unpkg.com/@progress/kendo-theme-material@latest/dist/all.css"> // To load the Kendo Fluent Theme<linkrel="stylesheet"href="https://unpkg.com/@progress/kendo-theme-fluent@latest/dist/all.css">Download and install the package. Use Node.js v5.0.0 or later.
npminstall--save @progress/kendo-vue-dateinputs @progress/kendo-vue-intlOnce installed, import the package module.
// ES2015 module syntaximport{DateInput,Calendar,DateRangePicker,DatePicker,DateTimePicker,TimePicker}from'@progress/kendo-vue-dateinputs';// CommonJS formatconst{DateInput,Calendar,DateRangePicker,DatePicker,DateTimePicker,TimePicker}=require('@progress/kendo-vue-dateinputs');You are required to install one of the Kendo UI themes to style your components. For more information on how to add the styles, refer to the article ongetting started.
Follow the instructions on the Kendo UI for VueMy License page to activate your license. You can skip this step if your application already contains a Kendo UI license file.
The Date Inputs package requires you to install the followingpeer dependencies in your application:
Vue 2 is currently in its end-of-support phase till Nov 2024. After our last major release for 2024, Vue 2 will no longer be supported in the new versions of the Kendo UI for Vue components. Please check ourVue 2 End of Support article for more details.