vue2/README.md

1.2 KiB

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