Join our community

Get access to the complete guide to developing and deploying fast, production-ready Nuxt apps.

3-1 Adding in TypeScript

In this lesson, we’ll add types to our useCourse composable.

By making it fully typed, we make it easier to avoid basic errors like treating a string as an int (or vice versa), typos, and other mistakes that are easily avoidable when using types.

We also get much better autocomplete support, which makes our development experience better!