Go to file
2015-05-29 00:09:47 -04:00
build make casperjs use local phantomjs 2015-05-29 00:09:47 -04:00
dist add a note to dist folder 2015-05-23 15:27:25 -04:00
examples fix todomvc filter quotes 2015-05-26 20:54:57 -04:00
src $add should notify regardless of whether the ob has associated vms (fix #873) 2015-05-28 15:24:52 -04:00
test refactor filter application 2015-05-28 15:13:35 -04:00
.gitignore adjust build setup 2015-05-10 13:19:55 -04: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 update travis config 2015-05-28 18:23:14 -04:00
bower.json bump 0.12.0-beta4 2015-05-26 11:20:32 -04:00
component.json optimize asset merging 2015-05-27 12:08:17 -04:00
CONTRIBUTING.md use local casperjs & update dev setup guide 2015-05-27 17:02:30 -04:00
gruntfile.js tests for async components 2015-05-12 23:01:15 -04:00
LICENSE meta file update 2014-11-04 22:05:15 -05:00
package.json use local casperjs & update dev setup guide 2015-05-27 17:02:30 -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