electron-vue - 用 Vue 开发基于 Electron 的应用

7,061 阅读1分钟
原文链接: www.gitbook.com

The boilerplate for making electron apps built with vue (pretty much what it sounds like).

Overview

The aim of this project is to remove the need to setup electron apps using vue. Since vue can take advantage of module loaders like webpack, getting everything to play nicely can be a little tricky.

Check out the documentation here.

Things you'll find in this boilerplate...

Getting Started

This boilerplate was built as a template for vue-cli and includes options to customize your final scaffolded app.

# Install vue-cli and scaffold boilerplate
npm install -g vue-cli
vue init simulatedgreg/electron-vue my-project

# Install dependencies and run your app
cd my-project
npm install
npm run dev

Contributing

Wanting to submit a pull request? Make sure to read this first.