This is the repo for Vue 2. For Vue 3, go to https://github.com/vuejs/core

Evan You dcc839a431 Release-v0.7.3 12 years ago
dist dcc839a431 Release-v0.7.3 12 years ago
examples 0108e71667 debug & benchmark updates 12 years ago
src a2e287f0b9 add support for interpolation in html attributes 12 years ago
tasks bcff84ebab update banner copyright to 2014! 12 years ago
test a2e287f0b9 add support for interpolation in html attributes 12 years ago
.gitignore 8c9c24ee4f add grunt size task 12 years ago
.jshintrc d704fb52d5 update build setup 12 years ago
.npmignore f4861ca990 npmignore 12 years ago
.travis.yml 303cacc183 only listen for composition event when has filters, use fork for vinyl-fs, update travis script 12 years ago
Gruntfile.js d704fb52d5 update build setup 12 years ago
LICENSE 91cf2fe038 remove todo 12 years ago
README.md dcc839a431 Release-v0.7.3 12 years ago
bower.json dcc839a431 Release-v0.7.3 12 years ago
component.json dcc839a431 Release-v0.7.3 12 years ago
package.json dcc839a431 Release-v0.7.3 12 years ago

README.md

Vue.js Build Status

Simple, Fast & Composable MVVM for building interative interfaces.

Introduction

Vue.js is a library that aims to simplify the development of interactive interfaces.

Technically, 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.

Philosophically, the goal is to allow the developer to embrace an extremely minimal mental model when dealing with interfaces - there's only one type of object you need to worry about: the ViewModel. It is where all the view logic happens, and manipulating the ViewModel will automatically keep the View and the Model in sync. Actuall DOM manipulations and output formatting are abstracted away into Directives and Filters.

For more details, guides and documentations, visit vuejs.org.

Browser Support

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

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:

# if you don't have these yet:
# npm install -g phantomjs casperjs
$ grunt test

License

MIT