Vue CLI로 프로젝트 생성

sdsdsrd·2020년 11월 10일
0

졸업프로젝트

목록 보기
2/15

1. vue cli 설치

npm install -g @vue/cli

2. 설치 완료 후 버전 확인

vue --version

3. customer라는 프로젝트 생성 후

vue create customer

4. Please pick a preset 에서 다음과 같이 선택

Manually select features
Babel, Linter / Formatter, Unit Testing
ESLint + Prettier
Jest
In dedicated config files
n

5. customer 경로로 이동 후 실행 확인

npm run serve

6. Vuetify 사용시

vue add vuetify

babel 버전 때문에
These dependencies were not found:
core-js/modules/es.array.concat ...
에러가 나면

npm install --save core-js

0개의 댓글