리엑트와 마찬가지로 node.js가 설치되어 있어야 에러가 나지 않음


① Node.js 다운로드

Node.js


② CMD (명령 프롬프트 - 터미널 설정)

Microsoft Windows [Version 10.0.19043.1237]
(c) Microsoft Corporation. All rights reserved.

C:\\Users\\USER> **npm install -g @vue/cli          Vue설치**

C:\\Users\\USER> **dir**                              **정보검색(mac=ls/window=dir)**

C:\\Users\\USER 디렉터리 
2021-10-10  오전 10:15 <DIR> Desktop            **정보목록 중 데스크탑 이름 확인**

> **cd Desktop**                                    **설치경로 선택
																			     (안되면 띄어쓰기나 세미콜론 빼고 다시 시도)**

> **vue create** vue2003                          **vue2003은 나의 폴더명**

> C:₩Users₩USER>Desktop>vue2003             **설치완료**

<aside> 💡 npm install -g @vue/cli g = global(글로벌)의 약자, 어디서든 실행되게 해주는 것

</aside>


③ Vue 시작 (VSCode)

// terminal - new terminal

> **npm run serve**               **Vue 작동**

> DONE

이미지 115.jpg