Go to file
Evan You 57d81efe78 use directive._checkParam everywhere 2014-11-26 00:45:02 -05:00
dist build 0.11.0 2014-11-06 19:49:25 -05:00
examples update firebase version in example 2014-10-27 15:41:12 -04:00
grunt include saucelabs in release task 2014-11-07 21:45:59 -05:00
src use directive._checkParam everywhere 2014-11-26 00:45:02 -05:00
test component wait-for & transition-mode 2014-11-26 00:39:35 -05: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 meta file update 2014-11-04 22:05:15 -05:00
README.md readme [ci skip] 2014-11-06 20:49:09 -05:00
bower.json meta file update 2014-11-04 22:05:15 -05:00
changes.md address #579 contenteditable changes 2014-11-21 16:28:11 -08:00
component.json rename folders: compile -> compiler, parse -> parsers 2014-11-24 17:23:42 -05:00
gruntfile.js fix ci tasks 2014-10-27 15:31:03 -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 reports: first read the issue checklist, then open an issue.
  • Questions, suggestions, feature requests: open an issue at vuejs/Discussion.
  • 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