Go to file
Evan You c1f24e4e5c dont remove v-cloak during compile 2014-08-16 23:06:03 -04:00
benchmarks allow quoted arguments in diretives 2014-08-07 18:44:18 -04:00
src dont remove v-cloak during compile 2014-08-16 23:06:03 -04:00
tasks size task 2014-08-16 22:59:25 -04:00
test inheritScope option 2014-08-16 00:24:25 -04:00
.gitignore add test coverage & improve coverage for existing tests 2014-08-05 14:29:53 -04:00
.jshintrc change block instance strategy 2014-08-12 18:12:09 -04:00
.npmignore npmignore 2014-08-08 19:10:25 -04:00
.travis.yml more files 2014-07-08 18:35:39 -04:00
CONTRIBUTING.md working on new observer 2014-07-09 01:35:20 -04:00
LICENSE more files 2014-07-08 18:35:39 -04:00
README.md more files 2014-07-08 18:35:39 -04:00
bower.json bench task 2014-07-11 02:48:04 -04:00
changes.md handle callable expressions for v-on 2014-08-16 18:06:37 -04:00
component.json update component.json 2014-07-29 10:26:16 -04:00
gruntfile.js size task 2014-08-16 22:59:25 -04:00
package.json test for emitter 2014-08-09 18:12:06 -04:00

README.md

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({
  data: {
    message: 'Hello Vue.js!'
  }
}).$mount('#demo')

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

  • General, non source-code related questions: check the FAQ first, if it's not addressed in there, ask here.
  • If you have a Vue-related project/component/tool, add it to this list!
  • Bugs, suggestions & feature requests: open an issue
  • Twitter: @vuejs
  • Google+ Community
  • freenode IRC Channel: #vuejs

Changelog

See details changes for each version in the release notes.

License

MIT

Copyright (c) 2014 Evan You