Skip to content

Commit

Permalink
Add script block instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
yordan-mitev authored Aug 7, 2024
1 parent 321802a commit 200316b
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions docs/getting-started/typescript-composition-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,12 @@ Kendo UI for Vue includes [four artfully designed themes](slug:themesandstyles)
```


1. In the `src/App.vue` file, import the CSS files provided by the installed theme package:
1. In the `src/App.vue` file, add a `<script>` block and import the CSS files provided by the installed theme package:

```js
import '@progress/kendo-theme-default/dist/all.css';
<script lang="ts">
import '@progress/kendo-theme-default/dist/all.css';
</script>
```

To add any custom styles to your app, insert a `<styles>` tag in the `src/App.vue` file and place your styles there.
Expand Down Expand Up @@ -356,4 +358,4 @@ Your Kendo UI for Vue Getting Started application is complete! You can download

* [Activate Your Kendo UI for Vue License](slug:my_license_vue)
* [Create Projects Faster with the Kendo UI for Vue VS Code Extension](slug:getting_started_vscode)
* [Take a Free Entry-Level Kendo UI for Vue (with TypeScript) Course](https://learn.telerik.com/learn/course/internal/view/elearning/45/kendo-ui-for-vue-with-typescript)
* [Take a Free Entry-Level Kendo UI for Vue (with TypeScript) Course](https://learn.telerik.com/learn/course/internal/view/elearning/45/kendo-ui-for-vue-with-typescript)

0 comments on commit 200316b

Please sign in to comment.