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

Evan You 331bcc673f avoid duplicate Observer.convert() 12 年之前
dist 590a7ee55b Release-v0.7.1 12 年之前
examples 0108e71667 debug & benchmark updates 12 年之前
src 331bcc673f avoid duplicate Observer.convert() 12 年之前
tasks 590a7ee55b Release-v0.7.1 12 年之前
test 7fc537ad5a fix functional tests for batcher 12 年之前
.gitignore 8c9c24ee4f add grunt size task 12 年之前
.jshintrc a5e27b1174 naive implementation 13 年之前
.npmignore f4861ca990 npmignore 12 年之前
.travis.yml a2cc4089d2 travis only build master 12 年之前
Gruntfile.js 72e8e73b2e organize grunt tasks 12 年之前
LICENSE 91cf2fe038 remove todo 12 年之前
README.md 9758efe8df readme + grunt build 12 年之前
bower.json 590a7ee55b Release-v0.7.1 12 年之前
component.json 590a7ee55b Release-v0.7.1 12 年之前
package.json 590a7ee55b Release-v0.7.1 12 年之前

README.md

VueJS Build Status

Simple, fast, modular & lightweight MVVM library for building interactive user interfaces.

Features

  • 10kb gzipped, no dependency.
  • DOM based templates with two-way data binding.
  • Precise and efficient DOM manipulation with granularity down to a TextNode.
  • POJSO (Plain Old JavaScript Objects) Models that can be shared across ViewModels with arbitrary levels of nesting.
  • Auto dependency tracking for expressions and computed properties.
  • Auto event delegation on repeated items.
  • Flexible API that encourages composition of components.
  • Extendable with custom directives and filters.
  • Supports partials, transitions and nested ViewModels.
  • Plays well with module systems. Primarily Component based, but can also be used with Browserify, as a CommonJS/AMD module or as a standalone library.

Browser Support

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

Installation

Component

$ component install yyx990803/vue

Browserify

$ npm install vue

Bower

$ bower install vue

Module Loaders, e.g. RequireJS, SeaJS

Built versions in /dist or installed via Bower can be used directly as a CommonJS or AMD module.

Standalone

Simply include a built version in /dist or installed via Bower with a script tag. Vue will be registered as a global variable.

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

Quickstart

HTML

<div id="demo" v-on="click:changeText">
    <p v-text="hello"></p>
</div>

JavaScript

new Vue({
    el: '#demo',
    scope: {
        hello: 'Hello World!',
        changeText: function () {
            this.hello = 'Hello VueJS!'
        }
    }
})

Documentation

Coming soon...

License

MIT