DEV Community

Deepak Gupta
Deepak Gupta

Posted on

 

Blog post series on Vue.js

We are writing a series of post to help people starting with vue.js to understand it from inside out.

Checkout out part 1 on Getting Started with vue.js - https://overflowjs.com/posts/Vuejs-Getting-Started-2019-Part-1

Check out part 2 on Understanding structuring and creating a simple authentication (Register/Login/Logout/Dashboard) - https://overflowjs.com/posts/Vuejs-Structuring-and-Authentication-In-2019-Part-2

Thanks!

Top comments (0)

typescript

11 Tips That Make You a Better Typescript Programmer

1 Think in {Set}

Type is an everyday concept to programmers, but it’s surprisingly difficult to define it succinctly. I find it helpful to use Set as a conceptual model instead.

#2 Understand declared type and narrowed type

One extremely powerful typescript feature is automatic type narrowing based on control flow. This means a variable has two types associated with it at any specific point of code location: a declaration type and a narrowed type.

#3 Use discriminated union instead of optional fields

...

Read the whole post now!