Skip to content

Commit b3669df

Browse files
committed
:scale changes to typescript options api article, remove redundant part
1 parent 0d53892 commit b3669df

File tree

2 files changed

+119
-506
lines changed

2 files changed

+119
-506
lines changed

docs/getting-started/typescript-composition-api.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ position: 20
1010

1111
# Get Started with Kendo UI for Vue Native Components with TypeScript and Composition API
1212

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-
1513
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.
1614

1715

@@ -21,8 +19,6 @@ This tutorial will help you develop a simple app that includes a native Vue Data
2119
2220
> 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.
2321
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-
2622
> 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).
2723
2824
## Create the Vue Project
@@ -137,7 +133,7 @@ Now that you've installed all required packages, you are ready to add the Kendo
137133
```js
138134
<script>
139135
import { ref, onMounted, defineComponent } from 'vue';
140-
import products from './appdata/products.json';
136+
import products from './appdata/products.ts';
141137
import { process } from '@progress/kendo-data-query';
142138
import { Grid } from '@progress/kendo-vue-grid';
143139
</script>

0 commit comments

Comments
 (0)