Go to file
2015-04-17 00:59:27 -04:00
dist [release] 0.11.5 2015-02-05 16:26:28 -05:00
examples update markdown example & e2e tests for debounce 2015-02-27 14:36:40 -05:00
grunt update saucelabs test browser versions 2014-12-01 21:32:53 -05:00
src use more conservative check for v-repeat inplace update 2015-04-15 14:12:59 -04:00
test allow use of global Date & new keyword inside expressions (fix #784) 2015-04-15 13:37:50 -04:00
.gitignore fix #717: support multiline expressions 2015-02-20 22:23:55 -06:00
.jshintrc tests for jQuery change event support 2015-02-25 09:39:41 -05:00
.npmignore update npmignore 2014-12-08 01:33:44 -05:00
.travis.yml more files 2014-07-08 18:35:39 -04:00
bower.json [release] 0.11.5 2015-02-05 16:26:28 -05:00
changes.md add notice to changes.md 2014-12-01 10:45:46 -05:00
component.json [release] 0.11.5 2015-02-05 16:26:28 -05:00
CONTRIBUTING.md yak shaving 2014-10-07 15:38:00 -04:00
gruntfile.js simplify _.inDoc fix and remove unit test patch for phantomjs 2015-04-06 11:42:56 -04:00
LICENSE meta file update 2014-11-04 22:05:15 -05:00
package.json bump webpack & uglify versions 2015-04-17 00:59:27 -04:00
README.md gitter 2014-11-27 22:43:02 -05:00

Vue.js Build Status Selenium Test Status Coverage Status

MVVM made simple.

Introduction

Vue.js is a library for building interactive web interfaces. It provides the benefits of MVVM data binding and a composable component system with a simple and flexible API. You should try it out if you like:

  • Intuitive API that simply makes sense
  • Extendable Data bindings
  • Plain JavaScript objects as models
  • Building interface by composing reusable components
  • Flexibility to mix & match the view layer with other libraries

It's really really easy to get started. Seriously, it's so easy:

<div id="demo">
  {{message}}
  <input v-model="message">
</div>
var demo = new Vue({
  el: '#demo',
  data: {
    message: 'Hello Vue.js!'
  }
})

To check out the live demo, guides and API reference, visit vuejs.org.

Browser Support

Vue.js supports most ECMAScript 5 compliant browsers, essentially IE9+. IE8 and below are not supported.

Contribution

Read the contributing guide.

Get in Touch

Changelog

Details changes for each release are documented in the release notes.

License

MIT

Copyright (c) 2014 Evan You