[Electron] Electron + vue.js
Vue-cli2 electron builder : https://simulatedgreg.gitbooks.io/electron-vue/content/ko/
$ npm install -g vue-cli
$ vue init simulatedgreg/electron-vue 프로젝트
$ yarn # 또는 npm install
$ yarn run dev # 또는 npm run dev
Vue-cli3 electron builder : https://github.com/nklayman/vue-cli-plugin-electron-builder
$ npm install -g @vue/cli
$ vue create 프로젝트
$ npm run serve # 웹 접속 가능 http://localhost:8080/
$ vue add electron-builder
$ npm run serve:electron # 또는 yarn serve:electron
* 실행 명령어가 `serve:electron`이 아닐 수 있다.
프로젝트 폴더 안에 package.json파일의 script부분에서 명령어 확인 가능하다.
+ VSCode 에서 필요한 Vue 플러그인 : Vetur
https://code.visualstudio.com/docs/nodejs/vuejs-tutorial
'WEB > Electron' 카테고리의 다른 글
[Electron] 자식창(Child Window) (0) | 2019.05.27 |
---|---|
[Electron] Access to XMLHttpRequest at '' from origin '' has been blocked by CORS policy 에러 해결 방법 (1) | 2019.05.25 |
[Electron] VSCode에서 디버깅하는 방법 (0) | 2019.05.23 |
[Electron] window.require is not a function 에러 (0) | 2019.05.08 |
[Electron] electron 최신 버전으로 업그레이드 (0) | 2019.05.04 |