Movatterモバイル変換


[0]ホーム

URL:


New to Kendo UI for Vue? Start a free 30-day trial

Get Started with Kendo UI for Vue

Updated on Oct 27, 2025

Prefer video tutorials? How about a free Telerik UI onboarding course? Check out theKendo UI for Vue with TypeScript training inTelerik Virtual Classroom.

This tutorial will help you develop a simple app that includes a native Vue Data Grid component. To achieve this, you will build a project usingVite and theVue Options API paired with JavaScript.

Curious about TypeScript or the Composition API? This tutorial comes in several additional variants:

Historically, all Kendo UI for Vue Native components have supported bothVue 2 andVue 3. However, Kendo UI for Vue versions released afterNovember 2024 will no longer support Vue 2. For more information, seeVue 2 End of Life.

Create the Vue Project

The recommended way to scaffold your Vue project is usingVite.

You can use both NPM and Yarn to create the project and import the Kendo UI for Vue components. This tutorial demonstrates only the NPM approach.

  1. Create the Vue project:

    sh
    npm create vite@latest

    or

    sh
    yarn create vite
  2. Enter the project name, for example,my-app.

  3. Select the Vue framework by using the arrow keys.

    sh
    ? Select a framework: » - Use arrow-keys. Return to submit.    Vanilla>   Vue    React...
  4. Select the JavaScript framework variant.

    sh
    ? Select a variant: » - Use arrow-keys. Return to submit.    TypeScript>   JavaScript...
  5. Run the newly created project by executing the following commands:

    sh
    cd my-appnpminstallnpm run dev

Clean Up the Generated Project

Before you start playing with Kendo UI for Vue, clean up the sample app created by Vite:

  1. Delete theHelloWorld.vue file in thesrc/components folder.
  2. Remove everything in thesrc/App.vue file and leave it blank.
  3. Delete theimport './style.css' line in thesrc/main.js file.
  4. Clear the script tag insrc/App.vue for Options API configuration:
html
<script></script>

Now that the project is clean, you can start developing the sample application.

Add Application Data

Components like the Grid need some data that they can display, so, in this step, you will add a file with sample data:

  1. In thesrc folder, create a new folder calledappdata where you will place the JSON file with the data.

  2. Create a newsrc/appdata/categories.json file. Copy the content ofthis GitHub file.json) and paste it into theproducts.json file.

  3. Create a newsrc/appdata/products.json file. Copy the content ofthis GitHub file.

json) and paste it into theproducts.json file.

Install the Data Grid Component

Kendo UI for Vue is distributed as multiple NPM packages, scoped to@progress. For example, the name of the Grid package is@progress/kendo-vue-grid. To use the Grid in your app, add the component and itsdependencies:

Kendo UI for Vue is a rich suite of many modular components. For our dashboard example, we’ll use three of these components: The Grid, the DropDownList and the Window.

sh
npminstall--save @progress/kendo-vue-grid @progress/kendo-data-query @progress/kendo-licensing @progress/kendo-vue-animation @progress/kendo-vue-data-tools @progress/kendo-vue-dateinputs @progress/kendo-vue-dropdowns @progress/kendo-vue-inputs @progress/kendo-vue-indicators @progress/kendo-vue-intl @progress/kendo-vue-popup

or

sh
yarnadd @progress/kendo-vue-grid @progress/kendo-data-query @progress/kendo-licensing @progress/kendo-vue-animation @progress/kendo-vue-data-tools @progress/kendo-vue-dateinputs @progress/kendo-vue-dropdowns @progress/kendo-vue-inputs @progress/kendo-vue-indicators @progress/kendo-vue-intl @progress/kendo-vue-popup

Import the CSS Styles

Kendo UI for Vue includesfour artfully designed themes available as separate NPM packages. To style the components, you can use each theme as is orcustomize it to your liking.

  1. Install theDefault theme:

    sh
    npminstall--save @progress/kendo-theme-default

    or

    sh
    yarnadd--save @progress/kendo-theme-default
  2. In thesrc/App.vue file, import the CSS files provided by the installed theme package:

    js
    import'@progress/kendo-theme-default/dist/all.css';

You can add any additional custom styles in the<styles> tag of thesrc/App.vue file.

Add a Vue Data Grid Component

Now that you've installed all required packages, you are ready to add the Kendo UI for Vue Data Grid to the application:

  1. In thesrc/App.vue file, add a<script> block and import the Grid and its data:
js
importproductsfrom'./appdata/products.json';import{ process}from'@progress/kendo-data-query';import{Grid}from'@progress/kendo-vue-grid';
  1. Add a<template> block with a simple heading and create a Data Grid. Bind it to theproducts data:

    html
    <template><h1>Hello Kendo UI for Vue!</h1><grid:data-items="products":columns="columns"></grid></template>
  2. Define the Grid in the<script> configuration:

js
exportdefault{name:'App',components:{'grid':Grid,},//..............

In the data options add the following lines:

js
data:function(){return{categories: categories,products: products,columns:[{field:'ProductName',title:'Product Name'},{field:'UnitPrice',title:'Price'},{field:'UnitsInStock',title:'Units in Stock'},{field:'Discontinued'}]//..............}}

These steps let you render a very basic Grid by runningnpm run dev and navigating to the local URL displayed in the terminal.

Notice theWe couldn't verify your license key message and the watermark in the Grid. They are informational and encourage you to activate your trial or commercial license and toadd a license file to your application. Once you complete these licensing steps, the license message and the watermark will disappear.

Now that you have a running Grid, you are ready to use some of its basic features like sorting and paging:

  1. In the Grid declaration, addpaging,sorting, and a height style that activatesscrolling.

    html
    <template><h1>Hello Kendo UI for Vue!</h1><grid:data-items="products":columns="columns":pageable="pageable":sortable="sortable":style="{ height: '400px' }"></grid></template>
  2. Implement the paging and sorting functionality in thedata option:

  • Set thepage size (take) to 10.

  • Set the initialskip for the paging.

  • Set the initialsorting by Product name.

    js
    <script>data:function(){return{sortable:true,skip:0,take:10,sort:[{field:"ProductName",dir:"asc"}],//..............}}</script><template><grid:data-items="products":columns="columns":skip="skip":take="take":sort="sort"></grid></template>

Get the Complete Source Code

Your Kendo UI for Vue Getting Started application is complete! You can download and run the complete sample application from thekendo-vue GitHub repository. Alternatively, run, fork andexperiment with the application directly in StackBlitz.

Next Steps


[8]ページ先頭

©2009-2025 Movatter.jp