Boilerplate for a simple Desktop App made with Vue
vue-desktop-basic boilerplate
Boilerplate for a simple Desktop App made with Vue.
What is this
This is a boilerplate for a simple desktop app. It comes with tips about common tasks for a desktop app.
Features
The following are already set up:
- Vue.js
- Vue-Router
- Vuex
- Vue-DevTools
- Sass
- Sasslint
- ESLint
Usage
- Download and install Node.js
- Download
vue-desktop-basic - Run
npm install - Run
npm start
Linting
npm run lintwill lint your.jsand.vuefiles according to the rules in.eslintrc.jsnpm run fixthis will auto-fix any linting issues thatnpm run lintfinds (not everything can be auto fixed)npm run sasswill start watching for changes in the sass folder and process the changes to the css folder.npm run sasslintwill lint your.sassand.scssfiles.
To do a build:
npm installnpm run build
All settings regarding the build are handled in the package.json.
Vue-DevTools
If you want Vue-DevTools to be accessible in the Chromium DevTools in your app, you cannot use the minified version of Vue.js (use vue.js not vue.min.js).
All other instructions and details are inside the app.
TO DO List:
- Add in Vue-Test-Utils