Go to file
Evan You d280f50cec meta info 2013-12-28 16:50:53 -05:00
dist Release-v0.7.2 2013-12-28 00:43:40 -05:00
examples debug & benchmark updates 2013-12-26 13:11:26 -05:00
src avoid duplicate Observer.convert() 2013-12-26 20:48:40 -05:00
tasks Release-v0.7.2 2013-12-28 00:43:40 -05:00
test fix functional tests for batcher 2013-12-24 16:55:29 -05:00
.gitignore add grunt size task 2013-12-23 20:56:00 -05:00
.jshintrc naive implementation 2013-07-28 23:23:56 -04:00
.npmignore npmignore 2013-12-23 22:31:05 -05:00
.travis.yml travis only build master 2013-11-15 14:07:19 -05:00
Gruntfile.js Release-v0.7.2 2013-12-28 00:43:40 -05:00
LICENSE remove todo 2013-10-23 22:42:15 -04:00
README.md meta info 2013-12-28 16:50:53 -05:00
bower.json meta info 2013-12-28 16:50:53 -05:00
component.json meta info 2013-12-28 16:50:53 -05:00
package.json meta info 2013-12-28 16:50:53 -05:00

README.md

VueJS Build Status

Lightweight, Simple, Fast & Composable MVVM library for building interactive user interfaces.

Introduction

VueJS is a library for building interactive interfaces. It provides the ViewModel layer of the MVVM pattern, which connects the View (the actual HTML that the user sees) and the Model (JSON-compliant plain JavaScript objects) via two way data-bindings. Read more.

Browser Support

  • Most Webkit/Blink-based browsers
  • Firefox 4+
  • IE9+ (IE9 needs classList polyfill and doesn't support transitions)

Documentation

Please see the Wiki. (under construction)

Development

# in case you don't already have them:
# npm install -g grunt-cli component
$ npm install
$ component install

To build:

$ grunt build

To watch and auto-build dev version during development:

$ grunt watch

To test (install CasperJS first):

$ grunt test

License

MIT