Front-End(10)
-
4. Ionic App 환경설정
ionic 관련 App branch 를 새로 생성합니다. 4-1. ionic 추가 index.html 파일에 ionic.js, cordova.js 추가 config/index.js 폴더 경로 변경 https://github.com/imse0109/noteApp/commit/70e81c7ee6e253fdec230a3d5ea9f513e9f62ab2 4-1. ionic 추가 · imse0109/noteApp@70e81c7 Permalink Browse files 4-1. ionic 추가 Loading branch information... Showing 2 changed files with 6 additions and 1 deletion. +1 −1 config/index.js +5 −0 index.html ..
2019.06.12 -
3. Firebase 연결 및 배포
3-1. firebase 프로젝트 생성 + 새 프로젝트 사이트 내의 Database, Storage, Hosting, Functions 의 기능을 활성화 합니다. https://console.firebase.google.com/u/0/ 로그인 - Google 계정 하나의 계정으로 모든 Google 서비스를 Google 계정으로 로그인 accounts.google.com 3-2. firebase 설치 npm i firebase --save 3-3. Hosting 연결 npm i -g firebase-tools firebase init firebase.json 파일의 설정값을 변경합니다. firebase.json "hosting":{ "public": "./dist" } npm run build fireba..
2019.06.10 -
2. vuetify 설치
2-1. vuetify 설치 및 적용 npm install vuetify --save 소스를 확인해보시면 v-alert 를 적용했습니다. material-icons 가 나오지 않고 또한, IE11에서도 적용된 화면이 나오지 않습니다. 소스확인 https://github.com/imse0109/noteApp/commit/6406ccf2a434fb4bb40d4c8f438a499fda55c22f 2-1. vuetify 설치 및 적용 · imse0109/noteApp@6406ccf Permalink Browse files 2-1. vuetify 설치 및 적용 Loading branch information... Showing 4 changed files with 29 additions and 13 deletio..
2019.06.05 -
1. vue-cli 설치
1강 개발환경설정 1. VScode 설치 (Tool)https://code.visualstudio.com/ 사이트에서 다운로드 후 설치 2. 작업폴더 생성 3. Node.js 설치 Node.js®는 Chrome V8 JavaScript 엔진으로 빌드된 JavaScript 런타임입니다. Node.js는 이벤트 기반, 논 블로킹 I/O 모델을 사용해 가볍고 효율적입니다. Node.js의 패키지 생태계인 npm은 세계에서 가장 큰 오픈 소스 라이브러리이기도 합니다. https://nodejs.org/ko/ 사이트에서 다운로드 후 설치 - 작업폴더 VScode 에서 열기 - 터미널로 열기: node -v ( node 설치 확인 ): npm -v ( npm 설치 확인 ) 4. vue-cli 설치에반 유가 공식적으..
2019.03.05