DEV Community

Lakshya Khera
Lakshya Khera

Posted on

4 2

Vue + Typescript = ๐Ÿ”ฅ

So, I wrote an article about Vue using Typescript on Medium link, so thought to write about it here.

I am a huge fan of Vue and recently I joined as an intern at an organisation where they're using Vue + Typescript so after a week of hustle, I finally have an idea how to get started.

So Vue + typescript works on class-based components, and use decorators to add functionality in class, to get started let's build a simple component.

<template>
<div>
<p>Hi this is test template</p>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import { Component} from 'vue-property-decorator';
@Component({
name:'Test component'
})
export default class TestComponent extends Vue {
}
</script>
view raw Test-new.vue hosted with โค by GitHub

We used Component decorative from 'vue-property-decorator' and used it over the class which extends Vue and exported it.

What about the state, well we can add an attribute and it will work as an state property.

Now let's add props and a child component.

<template>
<div>
<p>Hi this is test template</p>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import { Component, Prop} from 'vue-property-decorator';
@Component({
name:'Test component'
})
export default class TestComponent extends Vue {
@Prop({default: 'default value})
myProp : string | { isObject : true } | any
}
</script>
view raw Test-with-props.vue hosted with โค by GitHub

Here, we used Prop decorator and simply added to an attribute in the component, and with the power of typescript's static typing, I can add datatype as well.

<template>
<div>
<p>Hi this is test template</p>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import { Component, Prop} from 'vue-property-decorator';
import AnotherComponent from './another-component.vue'
@Component({
components: {
// We've added custom name for the component, else it can be simply adding component here
'another-one': AnotherComponent,
},
name:'Test component'
})
export default class TestComponent extends Vue {
//In typescript you have to declare type of a variable and | means or here.
@Prop({default: 'default value'})
myProp : string | { isObject : true } | any
}
</script>

Now, in the component decorator, we can add components property where child components can be registered.

I talked briefly talked over other decorators over my medium article, and here I'm adding a link for a practice project I build using vue + typescript. Link.

AWS Q Developer image

Your AI Code Assistant

Ask anything about your entire project, code and get answers and even architecture diagrams. Built to handle large projects, Amazon Q Developer works alongside you from idea to production code.

Start free in your IDE

Top comments (0)

nextjs tutorial video

Youtube Tutorial Series ๐Ÿ“บ

So you built a Next.js app, but you need a clear view of the entire operation flow to be able to identify performance bottlenecks before you launch. But how do you get started? Get the essentials on tracing for Next.js from @nikolovlazar in this video series ๐Ÿ‘€

Watch the Youtube series

๐Ÿ‘‹ Kindness is contagious

Explore a trove of insights in this engaging article, celebrated within our welcoming DEV Community. Developers from every background are invited to join and enhance our shared wisdom.

A genuine "thank you" can truly uplift someoneโ€™s day. Feel free to express your gratitude in the comments below!

On DEV, our collective exchange of knowledge lightens the road ahead and strengthens our community bonds. Found something valuable here? A small thank you to the author can make a big difference.

Okay