A cheatsheet for getting started with Vue.js
Go to file
Jack Hadrill fbd532bb72 Update 'README.md' 2020-10-07 20:46:23 +00:00
.gitignore Initial commit 2020-10-07 14:42:03 +00:00
LICENSE Initial commit 2020-10-07 14:42:03 +00:00
README.md Update 'README.md' 2020-10-07 20:46:23 +00:00

README.md

VueCheatsheet

A cheatsheet for getting started with Vue.js

Requirements

  • node / npm

Commands

  • Install Vue CLI
$ npm install -g @vue/cli
  • Upgrade Vue CLI
$ npm install -g @vue/cli --upgrade
  • Setup Vue project with "Router" and "Sass loader"
$ vue create my-app
$ cd my-app
$ vue add router
$ npm install sass-loader node-sass
  • Run Vue project
$ npm run serve