728x90
vueCLI 설치
기본 vue 개발 환경을 설정해주는 도구
npm install -g @vue/cli
# OR
yarn global add @vue/cli
vue -V # 설치확인
vue CLI 를 활용한 vue project 생성
vue create hello-vuecli # vue create 프로젝트명
확장프로그램 - vetur 설치
vue 프레임워크에 대해 다양한 기능을 제공하는 플러그인
*.vue 파일에 대한 코드들을 만들어주거나, 디버깅, 자동완성, 하이라이트나 에러체크 등을 지원
Features
- Syntax-highlighting
- Semantic-highlighting
- Snippet
- Emmet
- Linting / Error Checking
- Formatting
- IntelliSense
- Debugging
- Component Data: auto-completion and hover-information for popular Vue frameworks and your own custom components
- Experimental Interpolation Features: auto-completion, hover information and type-checking in Vue template
- VTI: Surface template type-checking errors on CLI
- Global components: support define global components.
프로젝트 생성 후 jsconfig.js에 아래 코드 추가
- jsconfig.json
{
"include": [
"./src/**/*"
]
}
eslint ignore 방법
vscode 새로고침
Ctrl + Shift + P > Developer:Reload Window 선택
반응형
'공부 > 프론트엔드' 카테고리의 다른 글
[PJ] Vue 공부중 (0) | 2022.09.26 |
---|---|
[PJ] vue2+vuetify (0) | 2022.09.20 |
[PJ] study (0) | 2022.09.15 |
[PJ] setting (0) | 2022.09.14 |
[CSS] Icon 사용하기(google icons, font-awesome) (0) | 2022.06.22 |
댓글