Skip to content

Instantly share code, notes, and snippets.

@urbansky
Last active March 28, 2018 06:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save urbansky/6defe7d32d03153fbd910e49fec21dd4 to your computer and use it in GitHub Desktop.
Save urbansky/6defe7d32d03153fbd910e49fec21dd4 to your computer and use it in GitHub Desktop.
Vue JS - Overview

Manage project

# Install Vue CLI, use 'sudo' on MacOS
# see: https://github.com/vuejs/vue-cli
npm install -g vue-cli

# Create project
vue init webpack-simple project-name

# install dependencies
npm install

# serve with hot reload at localhost:8080
npm run dev

# build for production with minification
npm run build
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment