Go to file
Evan You 5f27148eea Merge pull request #537 from tyage/svg-class
Support v-class attr of svg in IE
2014-11-04 12:34:09 -05:00
dist Release-v0.10.6 2014-07-28 22:43:36 -04:00
examples update todomvc 2014-03-23 16:21:36 -04:00
src indent 2014-10-31 16:22:22 +09:00
tasks use gulp-component 0.1.6 with modified require header 2014-03-11 15:38:58 -04:00
test fix #394 transition gaps 2014-08-12 17:44:51 -04:00
.gitignore add saucelabs! 2014-01-14 21:56:49 -05:00
.jshintrc filterBy & orderBy first pass 2014-03-11 23:41:40 -04:00
.npmignore ignore coverage in npm 2014-02-21 15:49:39 -05:00
.travis.yml Internalize emitter implementation 2014-02-23 12:51:52 -05:00
CONTRIBUTING.md Contributing guide: issue reporting checklist 2014-05-09 13:09:40 +01:00
Gruntfile.js add saucelabs! 2014-01-14 21:56:49 -05:00
LICENSE remove todo 2013-10-23 22:42:15 -04:00
README.md use SVG badges 2014-06-11 10:36:50 +09:00
bower.json Release-v0.10.6 2014-07-28 22:43:36 -04:00
component.json Release-v0.10.6 2014-07-28 22:43:36 -04:00
package.json Release-v0.10.6 2014-07-28 22:43:36 -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

  • 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