IONIC + VUE 기본 설치

-. nodejs 설치
node-v12.15.0-x64.msi
d:\nodejs 에 설치
Tools for Native Modules에서 Automatically Install the necessary tools. 선택 함

-. yarn 패키지 매니저 설치
npm install -g yarn
# yarn 설치 후 npm안되면 yarn으로 npm 새로 설치 해줘야 함.
yarn global add npm
# 그래도 안되면
C:\Users\unims\AppData\Local\Yarn\Data\global\node_modules\npm 으로 nodejs\node_modules 로 복사

-. ionic 기본 설치
npm install -g ionic@latest
> ionic 5.4.16 설치됨

-. vue/cli 설치
npm install -g @vue/cli

-. ionic + vue 프로젝트 생성
참고사이트 : https://dev.to/aaronksaunders/build-your-first-ionic-vue-app-18kj

vue create my-app #프로젝트 생성
> 처음선택 : default (babel, eslint) 선택
> 패키지 매니저 : Yarn 선택

cd my-app #프로젝트 폴더로 이동

#ionic 및 vue 설정 추가, 아래는 반드시 생성한 프로젝트 폴더에서 해야함
yarn add @ionic/vue@0.0.9
yarn add @ionic/core
yarn add vue-router

#프로젝트 빌드 및 테스트 배포
yarn serve

#restful api호출이 필요할 경우 axios설치
yarn add axios

#배포 필드
yarn build # dist 폴더에 빌드한 소스가 생성됨

npm install -g serve # serve 패키지 설치
serve -s dist #dist 폴더 배포

-. ionic + vue > 안드로이드 로 배포
#capactior 설치
npm install –save @capacitor/core @capacitor/cli

npx cap init –web-dir=dist #배포폴더 dist 폴더로 설정
npx cap add android #대상 단말 android 설정
> npx cap open android #안드로이드 스튜디오 자동 호출

#소스 필드 및 cap 업데이트
yarn run build
npx cap sync #dist 폴더 소스를 android\app\src\main\assets\public 에 동기화 시켜줌

-. ionic + vue 소스 폴더 복사 후 구동시
#node_modules 는 용량이 커서 제외하고 복사한경우

yarn install #실행하면 node_modules가 생김
yarn run serve #빌드 후 테스트 배포함