일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 비메모리 자원
- try-with-resources
- 칭기즈칸의 위대한 장군 수부타이
- 참조 계수
- HTML
- 아웃풋법칙
- Container
- 모두가 기다리는 사람
- 공헌감
- 이펙티브 자바
- 부자의그릇
- kubernetes
- ESG
- 수부타이
- 도파민형 인간
- colllection
- 레퍼런스 복사
- 과제의 분리
- docker
- 쿠버네티스
- java
- Infresh
- 히든 스토리
- CSS
- apache kafka
- sentry
- node
- 월칙
- 뉴 컨피던스
- try width resources
- Today
- Total
Hi
vue setting 하는 법 본문
현재 위치 pwd
mkdir '파일 이름'
cd '폴더이름'에 들어간다.
한번만 하면 된다. npm install -g vue-cli
vue init hyunwoo/vue-template
? Generate project in current directory? Yes
? Project name vue-router-test
? Project description A Vue.js project
? Author SharingWorld hapsoa@gmail.com
? Vue build standalone
? Install vue-router? Yes
? Use ESLint to lint your code? Yes
? Pick an ESLint preset Airbnb
? Pick an template language pug
? Pick an style language sass
? Set up unit tests Yes
? Pick a test runner karma
? Setup e2e tests with Nightwatch? Yes
? Pick a documentation tool documentationjs
? Do you want to deploy on the github page? Yes
? Branch name gh-pages
? What is the GitHub Project Name?
- Important: If this project is a user-wide github page, leave it blank. If not, please enter the n ame of the project.
- {USERNAME}.github.io => BLANK,
- {USERNAME}.github.io/{PROJECTNAME} => PROJECTNAME
- : vue-router-test
- ? Should we run
npm install
for you after the project has been created? (recommended) npm
그리고 Git에 Repository를 만들어서 push 한다.
-- npm --
dev 리프레시 까지 해주는, 127.0.0.1:8080/projectName
start 위와 (비슷)같다
unit : 유닛 테스트(src -> page -> Hello.vue)
e2e : end to end 테스트
test : unit + e2e 둘다 테스트
lint : 는 실행할 필요가 없습니다.
generate-doc : document(API 설명서)를 만듬.
dist -> documentation -> index.html docma.json jsdoc.json 을 참조하여, 브라우저를 만드는 듯 함.
serve-docs : 도큐먼트 실행
build : index.html 과 static 폴더로 모두 묶어준다. 난독화
github-deploy : github 페이지 만들어 주는 것
publish : 배포할 때 쓰는 것
preference에 code style 입력하고 Scheme 에 톱니바퀴버튼 누르면
-> import scheme -> intelliJ code style xml 누르고 -> thethelab......xml 을 선택하고 -> THETHELAB 을 친다.
index.html 을 바탕으로 모든게 구성이 된다. 외부에 넣어줄 것만.
'WEB(웹) > vuejs' 카테고리의 다른 글
this.$route (0) | 2018.10.13 |
---|---|
boilerplate (0) | 2018.09.27 |
SPA(Single Page Application) (0) | 2018.09.27 |
$emit (0) | 2018.09.20 |
vue windows 로 변경시 eslint error (0) | 2018.09.06 |