DEV Community

Mayank
Mayank

Posted on

 

Vue 2.x + Vite + Tailwind CSS + Typescript

Image description

πŸ‘‹ Hello developers,

I have created boilerplate github template repo, which is on vite, vue 2.x, tailwind css and pure javascript.

I know many of us already switched to vue 3.0 but still for some one who still want to use readymade set up with vite and tailwind using typescript is here checkout the link - https://github.com/mayank30/vite-tailwind-vue2-typescript

Feel free to create PR to enhance the project.

Thank you so much :)

Top comments (1)

Collapse
 
mayank30 profile image
Mayank

Vite + Vue 2.x + Tailwind + (JS / TS) - Boilerplate code to start with your vue project using vite | Product Hunt

11 Tips That Make You a Better Typescript Programmer

typescript

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!