Installation

Compatibility Note: Vue.js does not support IE8 and below.

Standalone

Simply download and include with a script tag. Vue will be registered as a global variable.


Development Version194.06kb, plenty of comments and debug/warning messages.

Production Version59.67kb minified / 19.57kb gzipped

Also available on cdnjs (takes some time to sync so the latest version might not be available yet).

NPM

1
2
3
$ npm install vue
# for edge version:
$ npm install yyx990803/vue#dev

Bower

1
2
# only stable version is available through Bower
$ bower install vue

Duo

1
2
3
var Vue = require('yyx990803/vue')
// for edge version:
var Vue = require('yyx990803/vue@dev')

Component

1
2
3
$ component install yyx990803/vue
# for edge version:
$ component install yyx990803/vue@dev

AMD Module Loaders

The standalone downloads or versions installed via Bower are wrapped with UMD so they can be used directly as an AMD module.

Ready?

Let’s Get Started.