Editor’s note: This article was last updated on 17 August 2022 to include new features introduced in Vue 3, including defineComponent
.
Vue is an amazing lightweight, progressive frontend framework. In this tutorial, we’ll demonstrate how to build a Vue app completely in TypeScript. We’ll highlight some of the benefits of using TypeScript with Vue by building an example app with class-based components, Vuex for state management, lifecycle hooks, and more. Let’s get started!
Vue and TypeScript for beginners | Tutorial
Learn how to use Vue.js with TypeScript in this tutorial by frontend developer and content creator, @TylerPotts. You can find the original blog post here on the LogRocket blog: https://blog.logrocket.com/vue-typescript-tutorial-examples/?youtube-tutorial 00:00 LogRocket intro 00:15 Using Vue.js and TypeScript 00:45 Adding TypeScript to Vue.js 05:59 Using lifecycle Hooks 06:49 Using Vuex with TypeScript 10:30 Using class-based components #LogRocket #Vue #TypeScript LogRocket is a frontend monitoring solution that combines session replay, performance monitoring, and product analytics to help software teams create an ideal product experience.
defineComponent
emit
Vue is flexible, so users are not forced to use TypeScript. Unlike Angular, older versions of Vue did not have proper support for TypeScript. For this reason, most Vue applications have historically been written in JavaScript.
Vue 3, released in September 2020, includes features like a built-in composition API, multiple root elements, and, crucially, improved TypeScript support. For detailed information on how to migrate your existing Vue projects to Vue 3, I recommend checking out Refactoring your Vue 2 apps to Vue 3.
Now that Vue officially supports TypeScript, it’s easy to create TypeScript projects from scratch using only the Vue CLI without any third-party libraries. However, neither the official Vue docs nor the TypeScript docs include all the information you need to get started. To paint a fuller picture, we’ll demonstrate how to build a new Vue and TypeScript application using the Vue CLI.
First, we’ll set up a new Vue project with TypeScript using the code below:
npx @vue/cli create typescript-app
Choose manually select features and configure it with the following settings:
Once the project is set up, run the project to test it:
cd typescript-app npm run serve
Open localhost:8080
or whatever URL your console shows after starting the project, and you should see your app running successfully. For each item below, I’ll show both the TypeScript and JavaScript-equivalent code so you can easily compare the two. Let’s get started!
defineComponent
defineComponent
provides decorators from the Vue library, which we can use to define Vue components with full TypeScript support. To use defineComponent
, open App.vue
from the src
folder and add the following code:
//src/App.vue //Typescript code <script lang="ts"> import { defineComponent } from 'vue'; import HelloWorld from './components/HelloWorld.vue'; export default defineComponent({ components:{ HelloWorld } }) </script>
To use TypeScript, we first need to set the lang
attribute in the <script>
tag to ts
:
<script lang="ts">
defineComponent
has a decorator that allows us to define the components and attributes of each component. The components
object helps us to add our components into the template:
components: { HelloWorld, }
To use data properties, we can simply declare them as class variables:
export default defineComponent({ components:{ HelloWorld, }, data(){ return{ title:"welcome to my app", list: [ { name: 'popoolatopzy', age: '26' }, { name: 'Preetish', age: '26' }, { name: 'John', age: '30' } ] } } })
The JavaScript-equivalent code would look like the following:
export default { data() { return { title: "welcome to my app", list: [ { name: 'Preetish', age: '26' }, { name: 'John', age: '30' } ] } }
To use props in our Vue component, we can use the props
decorator. In Vue, we can give additional details for props, like required
, default
, and type
. However, since we’re using defineComponent
, we don’t need to import the Prop
decorator. Instead, we can write props in defineComponent
, as shown below. We could also use readonly
to avoid manipulating the props:
export default defineComponent({ components:{ HelloWorld }, data(){ return{ title:"welcome to my app", } }, props: { name:{ readonly:true, default: 'John doe', type:String }, job:{ required: false, type: String, default: 'Developer' } }, setup(props) { props.name, props.age, props.job }, })
The equivalent JavaScript code is below:
export default { props: { name: { default: 'John doe' }, age: { required: true, }, job: { required: false, type: string, default: 'Developer' } } }
We can use a computed
property to write simple template logic, like manipulating, appending, or concatenating data. In TypeScript, a normal computed property is also prefixed with the get
keyword:
export default defineComponent({ components:{ HelloWorld }, data(){ return{ title:"welcome to my app", first:'Popoola', last:"Temitope" } }, computed:{ fullName(): String{ return this.first+ ' '+ this.last } } })
Below is the JavaScript equivalent:
export default { fullName() { return this.first + ' ' + this.last } }
We can write complex computed properties, which have both getter
and setter
. By default, computed properties are getter-only. The getter and setter must be used in the computed property for TypeScript as follows:
export default defineComponent({ components:{ HelloWorld }, title:"welcome to my app", data(){ return{ title:"welcome to my app", first:'Popoola', last:"Temitope" } }, computed:{ fullname:{ // getter get() : string { return this.first+" "+ this.last }, // setter set(value : string) { let names = value.split(' '); this.first = names[0]; this.last = names[names.length - 1] } } } })
The JavaScript-equivalent code is shown below:
fullName: { get: function () { return this.first + ' ' + this.last }, set: function (newValue) { let names = newValue.split(' ') this.first = names[0] this.last = names[names.length - 1] } }
Methods
in TypeScript, like normal class methods, have an optional access modifier:
export default defineComponent({ components:{ HelloWorld }, data(){ return{ title:"welcome to my app", } }, methods:{ clickMe() { console.log('clicked') console.log(this.addNum(4, 2)) }, addNum(num1: number, num2: number): number { return num1 + num2 } } })
The JavaScript-equivalent code is as follows:
export default { methods: { clickMe() { console.log('clicked') console.log(this.addNum(4, 2)) } addNum(num1, num2) { return num1 + num2 } } }
In TypeScript, Watchers
are written differently than how we’d usually write them in JavaScript. The most commonly used syntax for a watcher in JavaScript is below:
watch: { name: function(newval) { //do something } }
We don’t tend to use the handler syntax often:
watch: { name: { handler: 'nameChanged' } }, methods: { nameChanged (newVal) { // do something } }
The TypeScript syntax is similar to the second method. In TypeScript, we use the Watch
decorator and follow the name of the variable we need to watch:
watch: { name: function(newValue,oldValue) { //do something } }
We can also set the immediate
and deep
watchers:
watch: { someObject: { handler(newValue, oldValue) { //do something }, deep: true, immediate:true, } }
Below is the JavaScript equivalent code:
watch: { person: { handler: 'projectChanged', immediate: true, deep: true } } methods: { projectChanged(newVal, oldVal) { // do something } }
emit
To emit
a method from a child component to a parent component, we’ll use the emit
decorator in TypeScript:
emits: ['increment'], setup(props, { emit }) { const addToCount=(n: number)=>{ this.count += n } }, emits: ['resetData'], setup(props, { emit }) { const resetCount=(n: number)=>{ this.count = 0 } },
In the first example, the function called addToCount
is converted to kebab case, which is very similar to how emit
works in Vue.
In the second example, we pass the explicit name resetData
for the method, and we then use that name instead. Since addData
is in camel case, we convert it to kebab case instead:
<some-component add-to-count="someMethod" /> <some-component reset-data="someMethod" /> //Javascript Equivalent methods: { addToCount(n) { this.count += n this.$emit('add-to-count', n) }, resetCount() { this.count = 0 this.$emit('resetData') } }
Inside the @components
decorator, we store the code to register components inside the other components. Let’s demonstrate this by creating a counter app. Add the following code to App.vue
:
<template> <div class="app"> <h1>{{title}}</h1> </div> <Counter/> </template> //Typescript code <script lang="ts"> import { defineComponent } from 'vue'; import Counter from './components/Counter.vue'; export default defineComponent({ components:{ Counter }, data(){ return{ title:"welcome to my counter app", } } }) </script>
To use a counter component, create Counter.vue
inside the components
folder and add the following code to it:
<template> <div> <button v-on:click="decrement">decrement</button> <button v-on:click="increment">increment</button> <p>{{ count }}</p> </div> </template> <script lang="ts"> import { defineComponent} from 'vue'; export default defineComponent({ components:{}, data(){ return{ count:0 } }, methods:{ increment() { this.count++; }, decrement() { this.count--; } } }) </script>
Vuex is the official state management library used in most Vue applications. In Vuex, it’s good practice to split the store into modules, so we’ll demonstrate how to write that in TypeScript. To store the state, let’s create a file called types.ts
in the store
folder:
// store/types.ts export interface RootState{ stateTitle:string; }
In the store
folder, we need to create an index.ts
file to initialize Vuex and register the module:
// store/index.ts import Vue from 'vue'; import Vuex, { StoreOptions } from 'vuex'; import { RootState } from './types'; const store:StoreOptions<RootState> = { state:{ stateTitle:"Vue.js and TypeScript: A Complete Tutorial With Examples", }, modules:{ } } export default new Vuex.Store<RootState>(store)
In the code above, we utilize StoreOptions
from the Vuex library to handle the State
, Getter
, Mutation
, and Action
. We can access and update the value for stateTitle
using Getter
and Setter
in the App.vue
file as follows:
// src/App.vue <template> <div id="app"> <h1>{{stateTitle}}</h1> <br><br> <Counter /> </div> </template> <script lang="ts"> import Counter from './components/Counter.vue'; import store from './store'; import { defineComponent} from 'vue'; export default defineComponent({ title:"Counter App", components: { Counter, }, computed:{ stateTitle:{ get():string{ return store.state.stateTitle; }, set(value:string){ store.state.stateTitle = value console.log(store.state.stateTitle) } } } }) </script>
A Vue component has eight lifecycle hooks, including created
and mounted
. We use the same TypeScript syntax for each hook, and we declare these as normal class methods. Since lifecycle hooks are called automatically, they neither take an argument nor return any data. Therefore, we don’t need access modifiers, typing arguments, or return types:
export default defineComponent({ mounted() { //do something }, beforeUpdate() { // do something } })
The JavaScript-equivalent code is shown below:
export default { mounted() { //do something }, beforeUpdate() { // do something } }
To create mixins in TypeScript, we must first create our mixin file, which contains the data we share with other components.
Inside the mixins directory, create a file called ProjectMixin.ts
and add the following mixin, which shares the project name and a method to update the project name:
// src/mixins/ProjectMixin.ts import { defineComponent } from 'vue'; export default defineComponent({ data(){ return{ projName:"Vue.js and TypeScript: A complete tutorial with examples", } }, projName:'My project', projectDetail1: { set value(v : string) { this.projName = v; }, get value() : string { return this.projName } } })
In JavaScript, we’d write the code above as follows:
export default { data() { return { projName: 'My project' } }, methods: { setProjectName(newVal) { this.projName = newVal } } }
To use the TypeScript mixin above in our Vue component, we need to import the Mixins
from Vue Property Decorator as well as our mixin file itself, then write it as follows:
// src/App.vue <template> <div> 1{{ projectDetail }} </div> </template> //Typescript code <script lang="ts"> import { defineComponent } from 'vue'; import HelloWorld from './components/HelloWorld.vue'; import ProjectMixin from '@/mixins/ProjectMixin' export default defineComponent({ components:{ HelloWorld, ProjectMixin }, mixins: [ ProjectMixin ], computed: { projectDetail() { return this.projName + ' ' + 'Preetish HS' } } }) </script>
The JavaScript-equivalent code would be as follows:
<template> <div class="project-detail"> {{ projectDetail }} </div> </template> <script> import ProjectMixin from '@/mixins/ProjectMixin' export default { mixins: [ ProjectMixin ], computed: { projectDetail() { return this.projName + ' ' + 'Preetish HS' } } } </script>
In this article, we’ve covered all the basic information you need to create a Vue application completely in TypeScript with custom decorator features and no third-party libraries. Now, you should be able to get your Vue app up and running in TypeScript with features like defineComponent
, data, props, computed properties, methods, and watchers.
Vue 3.0 includes better support for TypeScript out of the box, and the entire Vue code was rewritten in TypeScript to improve maintainability. I hope you enjoyed this tutorial, and be sure to leave a comment if you have any questions. Happy coding!
Debugging Vue.js applications can be difficult, especially when there are dozens, if not hundreds of mutations during a user session. If you’re interested in monitoring and tracking Vue mutations for all of your users in production, try LogRocket.
LogRocket is like a DVR for web and mobile apps, recording literally everything that happens in your Vue apps, including network requests, JavaScript errors, performance problems, and much more. Instead of guessing why problems happen, you can aggregate and report on what state your application was in when an issue occurred.
The LogRocket Vuex plugin logs Vuex mutations to the LogRocket console, giving you context around what led to an error and what state the application was in when an issue occurred.
Modernize how you debug your Vue apps — start monitoring for free.
LogRocket is a frontend application monitoring solution that lets you replay problems as if they happened in your own browser. Instead of guessing why errors happen or asking users for screenshots and log dumps, LogRocket lets you replay the session to quickly understand what went wrong. It works perfectly with any app, regardless of framework, and has plugins to log additional context from Redux, Vuex, and @ngrx/store.
In addition to logging Redux actions and state, LogRocket records console logs, JavaScript errors, stacktraces, network requests/responses with headers + bodies, browser metadata, and custom logs. It also instruments the DOM to record the HTML and CSS on the page, recreating pixel-perfect videos of even the most complex single-page and mobile apps.
Hey there, want to help make our blog better?
Join LogRocket’s Content Advisory Board. You’ll help inform the type of content we create and get access to exclusive meetups, social accreditation, and swag.
Sign up nowCompare Prisma and Drizzle ORMs to learn their differences, strengths, and weaknesses for data access and migrations.
It’s easy for devs to default to JavaScript to fix every problem. Let’s use the RoLP to find simpler alternatives with HTML and CSS.
Learn how to manage memory leaks in Rust, avoid unsafe behavior, and use tools like weak references to ensure efficient programs.
Bypass anti-bot measures in Node.js with curl-impersonate. Learn how it mimics browsers to overcome bot detection for web scraping.
30 Replies to "How to use Vue 3 with TypeScript"
Great article!
You can use https://github.com/wemake-services/wemake-vue-template to get the similar setup in seconds!
It comes with full TypeScript support and Nuxt.
Check it out!
Nice! Filling in the typescript gaps between vuex and vue components is very important. Is there a way of gracefully getting this to work with action and getters in the root store as well?
const store = new Vuex.Store({
actions: {}, // Can’t make use of decorators
getters: {}, // Can’t make use of decorators
modules: {
User
}
})
Thank you!
Great I’ll check it out. Thanks for sharing.
If you are using actions and getters in your root store, you will be able to access it directly like this
“`
import {
Getter,
Action,
} from ‘vuex-class’
@Component
export class MyComp extends Vue {
@Getter(‘foo’) getterFoo
@Action(‘foo’) actionFoo
created () {
this.getterFoo
this.actionFoo()
}
}
“`
https://github.com/ktsn/vuex-class
Thank you for this article! I am new, and with this topic I find the offical docu not so good as its reputation would make me expect.
However, I do get lost, when you import “Project” and later set it as a component as “project” (lowercase). That doesn’t work in my case. Shouldn’t the component be written in uppercase, too?
And I get a ton off errors when defining the @Props:
ERROR in /Volumes/_II_/_SITES/vue_chord_player/src/components/Keyboard.vue(15,43):
15:43 Property ‘name’ has no initializer and is not definitely assigned in the constructor.
13 | export default class Keyboard extends Vue {
14 | @Prop() readonly msg!: string
> 15 | @Prop({ default: ‘John Doe’ }) readonly name: string
| ^
This is weird, because I do follow your setup completely… what is wrong here?
Hi Robert,
Thanks for pointing it out, you are right, it should have been uppercase “Project”.
And coming to props. It should actually work, Here is a working github repo which I created for Nuxt + Typescript. It Has similar @Prop declarations. You can check it out here. It should be there same for Vue as well.
https://github.com/preetishhs/nuxt-typescript-example
Hi, I applaud anybody who is spreading information about how to get typescript and vue working. Until Vue 3.0 comes out, it is not an easy thing to do. I have been working on my learning of it for the past 2 -3 months. My top two requirements were to use typescript (preferably classes) and unit testing.
I early on came to the conclusion that the proper solution at this point in time is to use the composition API and not the options API or the class API for Vue components. The composition API is the way forward for typescript in Vue and we can start using it today with the composition api plugin. And it makes your code very easy to separate the logic from the presentation so both can easily be unit tested. I have been defining all my logic of a vue in a class that gets instantiated in the vue component’s setup function and the class’ variables are defined as Refs for reactivity. It works great and unit testing it is so easy. it also allows you to separate different parts of the component’s logic into different classes so those items can be unit tested independently.
For global state, I tried vuex-module-decorators and gave up. They seem to work at first, but once you start trying to do error handling of actions, both in production code and unit tests, you start to get strange errors from the decorator code. There is an SO thread an issue on github about it. This issue was the thing that finally made me abandon vuex. It just isn’t architected well to work with a typed language like typescript and I don’t want to give up the type safety and tooling support of typescript by casting everything everywhere. So now that I don’t use vuex, I have started to create typescript classes that are singletons as my global state and I import these modules wherever I need them. It works perfectly and I get typesafety because they are just classes. And they are incredibly easy to unit test. I don’t have to do anything special.
Now that i have done all that, Vue and typescript work really well together.
My biggest recommendation would be to ditch vuex. I would say that 80% of my time learning vue was trying all the different approaches to typescript and vuex. It all felt like banging my head against the wall
This is great! please keep this article alive for as long as possible. please note this is in my bookmarks as i refer to it every time i am stuck
Hi Benedict. Thanks. This article will always be live.
I forgot to add an example app link in the article. If you want to take a look at the code of a simple Vue.js app written fully in typescript. Please take a look at this.
https://github.com/preetishhs/vue-typescript-example
I can not thank you enough bro, the provided link(GitHub repo) has helped me a-lot to spot some of thinks that did not sink well while following your tutorial. Thanks man
Hi first of all thanks for the nice article.
Unfortunately I didn’t manage to run your example with Vuex. The action updateName doesn’t get triggered. I remmember when I tried Vuex for the first time with plain Javascript, I had no problems, but somehow I thing with typescript it makes things 100 times more difficult.
I completely agree. I could do this with typescript so easily and now things got much worse in my opnion. Maybe I just have to get used to it.
Can you share a repo for how it works without Vuex? The repos shared here are my only reference. Now newly thinking up a new way of doing things makes my brain explode^^
Hi Daniel,
You are using Vuex-class helpers like the tutorial right?
Please take a look at the github example code. It might help you fix your issue.
https://github.com/preetishhs/vue-typescript-example
Well, The newer version of Vuex will also come with typescript support, It would be much easier then!
Thank you so much! It’s really helpful. 🙂
Thanks for this great Article.
Thank you, Preetish!
Your tutorial was very helpful for me
Preetish! This is a great article, thanks!
You missed “!” after “name”. As you have the “!” after “msg”, that property doesn’t have the problem. “!” is the “definite assignment assertion”. See https://www.typescriptlang.org/docs/handbook/release-notes/typescript-2-7.html#definite-assignment-assertions
I’m hitting issues now with this, when I use an action I’m getting:
ERR_ACTION_ACCESS_UNDEFINED: Are you trying to access this.someMutation() or this.someGetter inside an @Action?
That works only in dynamic modules.
If not dynamic use this.context.commit(“mutationName”, payload) and this.context.getters[“getterName”]
In even the simplest examples like the above that are definitely using this.context.commit, anyone got any ideas?
Hi Michael,
Unfortunately the library `vuex-module-decorators` is no longer maintained by the author.
There is a similar issue already opened on github:
https://github.com/championswimmer/vuex-module-decorators/issues/321
For a working Vue typescript example please check this repo:
https://github.com/preetishhs/Vue-typescript-example
For Nuxt Typescript example:
https://github.com/preetishhs/nuxt-typescript-example
Great article! very simple and clear example. Thank you for the article. I wish more articles on typescript
NOTE: Be careful, getters in vuex are not reactive. Loaded just once when the component is created.
To access a data reactively, use this syntax
syntax: this.$store.state.{CLASSNAME}.{MEMBER_OF_CLASS}
example: this.$store.state.User.name
to put in the component which you want access at the data.
I use class components with decorators. Except for vuex and vuex modules I do not use decorators. Do not need them and all works fine, no errors.
I understood that when application grows also vuex is needed in Vue 3, So I stay at Vue 2 with typescript for now.
Isn’t the class api going to be deprecated?
$emit not working
Great article! very simple and clear example. Thank you for the article. I wish more articles on typescript
will it be relevant for nuxt 3 versions or all this work will have to be thrown into the trash
We try to stay abreast of new releases and update our content accordingly when there are breaking changes. We’ll keep this on our radar. Thanks!