#https://cli.vuejs.org/guide/installation.html
npm install -g @vue/cli
# Vue CLI requires Node.js version 8.9 or above (8.11.0+ recommended).
vue create hello-world
The vue-cli-service serve command starts a dev server (based on webpack-dev-server) that comes with Hot-Module-Replacement (HMR) working out of the box.
npm run serve
vue-cli-service build produces a production-ready bundle in the dist/ directory, with minification for JS/CSS/HTML and auto vendor chunk splitting for better caching. The chunk manifest is inlined into the HTML.
npm run build
See https://cli.vuejs.org/guide/cli-service.html
Starts vue GUI for managing your projects, install plugins (vuetify, eslint,...)
vue ui