# How to start a new Vue project

1. Install Node js

2. Install Vue js with ```npm install vue``` in terminal

3. Run in terminal the following command to start a new project
```
vue create projectname
```
instead of ```projectname``` use whatever you want

4. Then select whichever option suits you
```
Vue CLI v4.5.15
? Please pick a preset: (Use arrow keys)  
  Default ([Vue 2] babel, eslint)         
> Default (Vue 3) ([Vue 3] babel, eslint) 
  Manually select features 
```


