From d0ce66f99559fd89283d301f4c0e35c52821d405 Mon Sep 17 00:00:00 2001 From: filipKovachev Date: Thu, 27 Jun 2024 11:15:16 +0300 Subject: [PATCH] resolve feedback --- docs/getting-started/get-started-nuxt-3.md | 8 +++++--- docs/getting-started/javascript-options-api.md | 8 ++++---- .../typescript-composition-api.md | 8 +++----- docs/getting-started/typescript-options-api.md | 18 ++++++++---------- 4 files changed, 20 insertions(+), 22 deletions(-) diff --git a/docs/getting-started/get-started-nuxt-3.md b/docs/getting-started/get-started-nuxt-3.md index 269b252..90b696d 100644 --- a/docs/getting-started/get-started-nuxt-3.md +++ b/docs/getting-started/get-started-nuxt-3.md @@ -18,9 +18,11 @@ This tutorial will help you develop a simple app that includes a native Vue Data >* [Kendo UI for Vue with JavaScript and the Options API](slug:getting_started_javascript_options_api) >* [Kendo UI for Vue with TypeScript and the Options API](slug:getting_started_typescript_options_api) +> Historically, all Kendo UI for Vue Native components have supported both **Vue 2** and **Vue 3**. However, Kendo UI for Vue versions released after **November 2024** will no longer support Vue 2. For more information, see [Vue 2 End of Life](https://www.telerik.com/kendo-vue-ui/components/vue2-deprecation/). + ## Create the Vue Project -1. Create a Nuxt project named my-app: +1. Create a Nuxt project named `my-app`: ```sh npx nuxi init my-app @@ -86,13 +88,13 @@ Kendo UI for Vue includes [four artfully designed themes](slug:themesandstyles) ## Add a Vue Data Grid Component -1. Create the file in which we will add the Grid's logic with the following command: +1. Now that you've installed all required packages, you are ready to add the Kendo UI for Vue Data Grid to the application. ```sh npx nuxi add page KendoGrid ``` -1. In the pages/KendoGrid.vue file, add a ` ``` -Now that the project is clean, you can start developing the sample application. - - Now, when we are ready with the blank Vue project, we can continue the development of our sample application. ## Add Application Data -Add dummy data needed by the components. Create folder `appdata` in the `src` folder. Add the following files to the `appdata` folder. +Components like the Grid need some data that they can display, so, in this step, you will add a file with sample data: 1. Create a new `src/appdata/products.ts` file. Copy the content of [this GitHub file](https://github.com/telerik/kendo-vue/tree/master/getting-started-typescript-composition-api/src/appdata/categories.ts) and paste it into the `products.ts` file.