> For the complete documentation index, see [llms.txt](https://docs.sysout.co.kr/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sysout.co.kr/web/develop-page/js/vuejs/vue-electron.md).

# Vue-electron

## Vue-electron

이 문서에서는 Vue-cli 3 project에 electron 개발 환경을 추가하는 방법을 다룬다.

`@vue/cli` 설치가 선행되어 있어야 한다.

### add electron

vue project 폴더에서 다음 명령을 통해 `electron-builder`를 추가하면 환경 구성이 완료된다.

```bash
vue add electron-builder
```

### run electron

```bash
npm run electron:serve
```

### build electron

```bash
npm run electron:build
```
