diff --git a/docs/getting-started/index.md b/docs/getting-started/index.md index 3c3211e..062ec11 100644 --- a/docs/getting-started/index.md +++ b/docs/getting-started/index.md @@ -74,7 +74,7 @@ Now that the project is clean, you can start developing the sample application. ## Add Application Data -Components like the Grid need some data that the can display, so, in this step, you will add a file with sample 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 the `src` folder, create a new folder called `appdata` where you will place the JSON file with the data. @@ -143,31 +143,34 @@ Now that you've installed all required packages, you are ready to add the Kendo ``` -1. Define the Grid in the ` + + ``` These steps let you render a very basic Grid by running `npm run dev` and navigating to the local URL displayed in the terminal. -> Notice the `No valid license found` message and the watermark in the Grid. They are information and encourage you to activate your trial or commercial license and to [add a license file to your application](slug:my_license_vue). Once you add a valid license file, the license message and the watermark will disappear. +> Notice the `No valid license found` message and the watermark in the Grid. They are informational and encourage you to activate your trial or commercial license and to [add a license file to your application](slug:my_license_vue). Once you complete these licensing steps, the license message and the watermark will disappear. ## Configure the Vue Data Grid @@ -193,40 +196,17 @@ Now that you have a running Grid, you are ready to use some of its basic feature * Set the initial [`skip`](slug:api_grid_gridprops#toc-skip) for the paging. * Set the initial [sorting](slug:api_grid_gridprops#toc-sort) by Product name. - ```js - + + ``` ## Get the Complete Source Code