Develop(11)
-
OpenJDK 8 설치 및 환경변수 설정
다운받기 https://jdk.java.net/java-se-ri/8-MR3 Java Platform, Standard Edition 8 Reference Implementations Java Platform, Standard Edition 8 Reference Implementations The official Reference Implementations for Java SE 8 (JSR 337) are based solely upon open-source code available from the JDK 8 Project in the OpenJDK Community. This Reference Implementation ap jdk.java.net 위의 jdk는 32bit 인지 failed to l..
2020.06.27 -
[Vue.js|json] vuex 사용하기 & json파일 불러오기
1. vuex에서 json 파싱하기 먼저 json파일을 프로젝트 내에 저장합니다. 예시로 쓸 db.json 파일입니다. {"data":[ { "user":"AAA", "genre":"myS", "location":"A3", "size":"2" }, { "user":"BBB", "genre":"myS", "location":"A13", "size":"1" }, { "user":"CCC", "genre":"myS", "location":"B2", "size":"2" } ] } store폴더 밑에 있는 index.js에서 구현해보겠습니다. json 데이터 읽기 state 데이터 mutations state에 저장된 데이터의 상태를 변경할 때 사용합니다. data라는 변수를 받아서 state에 있는 db에 저장..
2019.12.26 -
[Github|Netlify] 호스팅하기
https://www.netlify.com/ Netlify: All-in-one platform for automating modern web projects Deploy modern static websites with Netlify. Get CDN, Continuous deployment, 1-click HTTPS, and all the services you need. Get started for free. www.netlify.com 회원가입 후 New site from Git을 클릭한다 Git Solution 선택하기 승인하기 연동 확인 설정하기 Basic build settings Build Command: npm run build, yarn build 와 같은 빌드용 명령어 작성, 필요없다면..
2019.12.21 -
[Vue.js|Vuetify] Router 설정하기
Vuetify Application components v-app-bar v-bottom-navigation v-footer v-navigation-drawer v-system-bar 이 포스트에서 사용되는 Vuetify application components는 v-app-bar, v-navigation-drawer로 구성되어있습니다. App.vue 코드 router/index.js 코드 import Vue from 'vue' import VueRouter from 'vue-router' import Home from '../views/Home.vue' Vue.use(VueRouter) const routes = [ { path: '/', name: 'home', component: Home }, { ..
2019.12.20 -
[Git] Git 명령어
git init // 기존 디렉토리를 git 저장소로 만들기 git add . // 파일 수정 후 staged 상태로 만들기 git commit -m "메세지" // 변경사항 커밋하기 git commit -am "메세지" // add + commit( trached 상태 파일을 자동으로 staged로 변경) git rm git push remote_name branch-name // 변경사항 커밋하기 git push -u origin master // -u: 업데이트 받고 push를 한다는 의미 git pull // git서버에서 받아와서 merge 하기 git status // 상태 확인하기 git remote add origin git checkout -b // 브랜치를 만들고 이동
2019.12.20 -
[VSCode] VSCode 개인적인 설정
탭 간격 한글 Korean Language Pack for Visual Studio Code ctrl+shift+P로 명령어 창을 띄우고 configure display language -> ko로 설정 Vue Tool Vetur 줄바꿈 폰트 맨앞으로 두면 바로 반영됩니다.
2019.12.20