Skip to content

Instantly share code, notes, and snippets.

@laurakathleen
Last active October 24, 2016 02:24
Show Gist options
  • Save laurakathleen/1f06affa5de78cedecda639e560c1251 to your computer and use it in GitHub Desktop.
Save laurakathleen/1f06affa5de78cedecda639e560c1251 to your computer and use it in GitHub Desktop.

#Vue.js

##What is Vue.js? Vue.js is a framework used for building user interfaces, whose core library is focused on the view layer. It allows for mixing and matching of different libraries, although its certainly not required to use other libraries with it.

Allows for...

-declarative rendering

-use of conditionals and loops

-event handling

-handling of user input

-similar to React in that it also relies components

-built in transitions to take care of show/hide toggles

##Installation: Option 1: Download version from this site: https://vuejs.org/guide/installation.html

Option 2: Use a CDN

Option 3 (recommended for larger apps): npm install vue

The Vue.js docs are simple, easy to read, and actually help implement vue.js in your own apps. Check it out here: https://vuejs.org/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment