Go to file
Evan You a1c6bcd263 fix #505 v-model initial value not piped through write filters 2014-10-23 17:25:22 -04:00
examples big rewrite for block-handling 2014-10-21 01:38:19 -04:00
grunt grunt release tasks 2014-10-07 16:33:45 -04:00
src fix #505 v-model initial value not piped through write filters 2014-10-23 17:25:22 -04:00
test remove attributes at link time instead of compile 2014-10-23 16:21:07 -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 yak shaving 2014-10-07 15:38:00 -04:00
LICENSE more files 2014-07-08 18:35:39 -04:00
README.md yak shaving 2014-10-07 15:38:00 -04:00
bower.json bench task 2014-07-11 02:48:04 -04:00
changes.md test and change doc for vm.$compile 2014-10-21 04:05:01 -04:00
component.json v-el 2014-09-11 11:35:07 -04:00
gruntfile.js fix #484 Safari nested <template> clone fail 2014-10-15 18:52:40 -04:00
package.json fix #484 Safari nested <template> clone fail 2014-10-15 18:52:40 -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({
  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

  • For latest releases and announcements, follow on Twitter: @vuejs
  • Bugs, suggestions & feature requests: open an issue
  • 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!
  • freenode IRC Channel: #vuejs

Changelog

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

License

MIT

Copyright (c) 2014 Evan You