How to create vue3 + Typescript projecty

Posted by Learning libs on December 29, 2020

How to create vue3 + Typescript project

@TOC

One. install vue-cli

npm install -g @vue/cli @vue/cli-service-global
or
yarn global add @vue/cli @vue/cli-service-global

Two. Creating a Project

#### vue create To create a new project, run:

vue create <Project name>

#### Using the GUI vue ui

The above command will open a browser window with a GUI that guides you through the project creation process.

vue3 ui create project finished