You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/getting-started/typescript-composition-api.md
+1-5Lines changed: 1 addition & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,8 +10,6 @@ position: 20
10
10
11
11
# Get Started with Kendo UI for Vue Native Components with TypeScript and Composition API
12
12
13
-
Recently, the [Composition API](https://vuejs.org/guide/introduction.html#composition-api) in Vue is getting more and more popular, over the classic [Options API](https://vuejs.org/guide/introduction.html#options-api).
14
-
15
13
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 using [Vite](https://vitejs.dev/) and the [Vue Composition API](https://vuejs.org/guide/introduction.html#composition-api) paired with TypeScript.
16
14
17
15
@@ -21,8 +19,6 @@ This tutorial will help you develop a simple app that includes a native Vue Data
21
19
22
20
> 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](slug:vue2-end-of-support) for more details.
23
21
24
-
The current example uses the recommended by Vue [Vite build tool](https://vitejs.dev/) + [Vue Composition API](https://vuejs.org/guide/introduction.html#composition-api) + Typescript. If you need Getting started information that uses `Vue Options API` + Typescript, you can check [this link](slug:getting_started_typescript_options_api).
25
-
26
22
> Prefer video tutorials? How about a free Telerik UI onboarding course? Check out the [Kendo UI for Vue with TypeScript](https://learn.telerik.com/learn/course/internal/view/elearning/45/kendo-ui-for-vue-with-typescript) training in [Telerik Virtual Classroom](https://learn.telerik.com/learn).
27
23
28
24
## Create the Vue Project
@@ -137,7 +133,7 @@ Now that you've installed all required packages, you are ready to add the Kendo
137
133
```js
138
134
<script>
139
135
import { ref, onMounted, defineComponent } from 'vue';
140
-
import products from './appdata/products.json';
136
+
import products from './appdata/products.ts';
141
137
import { process } from '@progress/kendo-data-query';
0 commit comments