Getting Started with Kendo UI for Vue Native Scheduler

The Kendo UI for Vue Native Scheduler component displays events in different views with built-in support for editing, timezones, and recurrence rules.

Due to the huge number of possible features that can be implemented in the Scheduler, the team is actively gathering feedback and will implement the most requested features according to the Kendo UI for Vue Feedback Portal.

ninja-iconThe Scheduler is part of Kendo UI for Vue, a professional grade UI library with 110+ components for building modern and feature-rich applications. To try it out sign up for a free 30-day trial.Start Free Trial

Basic Usage

The following example demonstrates the Scheduler component in action.

Change Theme
Theme
Loading ...

Functionality and Features

Installation

  1. Download and install the package. Use Node.js v5.0.0 or later.

    sh
    npm install --save @progress/kendo-vue-scheduler @progress/kendo-vue-intl @progress/kendo-vue-popup @progress/kendo-vue-dialogs @progress/kendo-vue-dateinputs @progress/kendo-vue-dropdowns @progress/kendo-vue-inputs @progress/kendo-vue-buttons @progress/kendo-date-math @progress/kendo-vue-form @progress/kendo-licensing @progress/kendo-svg-icons
  2. Once installed, import the package module.

    jsx
    // ES2015 module syntax
    import { Scheduler } from '@progress/kendo-vue-scheduler';
    jsx
    // CommonJS format
    const { Scheduler } = require('@progress/kendo-vue-scheduler');
  3. You are required to install one of the Kendo UI for Vue themes to style your components. For more information on how to add the styles, refer to the style section of our getting started article.

Dependencies

The Scheduler package requires the following peer dependencies that have to be installed by your application:

  • Vue 2.6.11+ or 3.0.0+
  • @progress/kendo-licensing
  • @progress/kendo-svg-icons
  • @progress/kendo-vue-intl
  • @progress/kendo-vue-popup
  • @progress/kendo-vue-dialogs
  • @progress/kendo-vue-dateinputs
  • @progress/kendo-vue-dropdowns
  • @progress/kendo-vue-inputs
  • @progress/kendo-vue-buttons
  • @progress/kendo-date-math

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 our Vue 2 End of Support article for more details.