Getting Started with Kendo UI for Vue

Updated on Sep 9, 2026

Get up and running with Kendo UI for Vue—scaffold a project in just a few steps, then explore the most popular components to start building your UI. New to the library? See Key Features for an overview of what Kendo UI for Vue offers.

ninja-iconKendo UI for Vue is a professional grade UI library with 100+ components for building modern and feature-rich applications. To try it out sign up for a free 30-day trial.Start Free Trial

Quick Start

Set up your first Kendo UI for Vue project and start building in minutes. Use the Kendo CLI for fast command-line scaffolding (recommended), or the VS Code Extension for a visual, wizard-driven experience.

Create a Project with the Kendo CLI

The Kendo CLI offers both an interactive wizard and direct setup commands. If you are new to Kendo UI for Vue, the wizard gives you the fastest way to start.

  1. Install the CLI globally:

    sh
    npm i -g @progress/kendo-cli@latest
  2. Launch the interactive wizard by running kendo with no arguments:

    sh
    kendo
  3. In the Quick Start section, select Create a new project, then follow the prompts to configure your project (product, template, app name, theme, and swatch).

When setup is complete, the wizard shows a summary similar to this:

sh
 ◇  Kendo UI for Vue app ready  ✓─────────────────────────────╮
 │                                                            │
 │ Next steps                                                 │
 │ • cd KendoUIForVueApp                                      │
 │ • npm i                                                    │
 │ • npm run dev                                              │
 │                                                            │
 │ Theme       Meridian                                       │
 │ Styling     CSS                                            │
 │                                                            │
 │ Docs  https://www.telerik.com/kendo-vue-ui/components/     │
 │                                                            │
 ╰────────────────────────────────────────────────────────────╯

Run the commands in the Next steps section to install the dependencies and start the development server.

Prefer to run commands manually? See Generate a Kendo UI for Vue Project for all available options.

Create a Project with the VS Code Extension

Use the Kendo UI Productivity Tools extension for VS Code to scaffold a project from a template wizard.

  1. Install the extension from the Visual Studio Marketplace.

  2. Open the VS Code Command Palette (Ctrl/Command + Shift + P) and run Kendo UI Template Wizard.

  3. Set the project name and path, select Kendo UI for Vue as the project type, choose a template and a theme, then click Create Project.

  4. Install the dependencies and start the app:

    sh
    npm install && npm run serve

The extension also provides code snippets (type kv- in your editor) and scaffolders for generating components such as Grids and Charts directly in an existing project.

Have an Existing Project?

If you want to add a Kendo UI for Vue component to an existing project, install its package and a Kendo theme, then import and use the component:

  1. Install the component package and a theme, for example the DropDownList:

    sh
    npm install --save @progress/kendo-vue-dropdowns @progress/kendo-theme-default
  2. Import the theme styles and the component in your .vue file:

    js
    import '@progress/kendo-theme-default/dist/all.css';
    import { DropDownList } from '@progress/kendo-vue-dropdowns';
  3. Add the component to your template:

    html
    <DropDownList :data-items="['Item 1', 'Item 2', 'Item 3']" />

Alternatively, run kendo scaffold vue grid (or chart, form, scheduler) from the Kendo CLI to generate a ready-made page inside an existing Vue project. For all available options, see Scaffold Components in an Existing Project.

Detailed Walkthroughs

Prefer a complete, step-by-step tutorial that builds a small dashboard app? Pick the guide that matches your preferred language and API style:

Next Steps

We are sure that you are looking for more—browse the components page and discover the amazing features that Kendo UI for Vue brings to the table.

Happy coding!

Data Grid
UI Component
Transform data into interactive experiences with powerful sorting, filtering, paging, and editing built right in.
Charts
UI Component
Turn complex datasets into visual stories with 17 customizable chart and series types.
Form
UI Component
Build robust forms effortlessly with automatic validation, field management, and seamless data handling.
Activate Your License
Productivity Tools
Set up your trial or commercial license key.
VS Code Extension
Productivity Tools
Boost your productivity with instant project scaffolding, smart snippets, and one-click component generation right in your editor.
Progress Design System
Productivity Tools
Create pixel-perfect, accessible interfaces with ready-to-use Figma kits and comprehensive design patterns.