vue_app
- Introduction
- Run the project
- Instructions on getting started w/ Vue-cli3, electron, vuetify
- References / Documentation
Introduction
This project is a template that is built using vue-cli-3
which allows for the
use of Webpack, Vue, Vuetify (Material Design), and Electron (along w/ lodash
,
and axios
).
Run the project
Task | Command |
---|---|
Project setup | npm install |
Compiles and hot-reloads for development | npm run serve |
Compiles and minifies for production | npm run build |
Lints and fixes files | npm run lint |
Instructions on getting started w/ Vue-cli3, electron, vuetify
Install vue-cli-3
fix-brew.sh
npm install -g @vue/cli
Setup the new project
Run the project
- in electron -
npm run serve:electron
- in browser -
npm run serve
Add deps
npm add axios lodash
- Use them by doing a simple import (eg in main.js,
import _ from 'lodash';
)