Skip to content

Commit

Permalink
meta
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Jan 4, 2014
1 parent 1e58721 commit 74e2f38
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
14 changes: 10 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
# VueJS [![Build Status](https://travis-ci.org/yyx990803/vue.png?branch=master)](https://travis-ci.org/yyx990803/vue)
# Vue.js [![Build Status](https://travis-ci.org/yyx990803/vue.png?branch=master)](https://travis-ci.org/yyx990803/vue)

> Lightweight, Simple, Fast & Composable MVVM library for building interactive user interfaces.
> Simple, Fast & Composable MVVM for building interative 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.](https://github.com/yyx990803/vue/wiki/What-is-VueJS)
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**.

To learn more, visit [vuejs.org](http://vuejs.org).

## Browser Support

Expand All @@ -14,7 +20,7 @@ VueJS is a library for building interactive interfaces. It provides the **ViewMo

## Documentation

Please see the [Wiki](https://github.com/yyx990803/vue/wiki). (under construction)
Available at [vuejs.org/docs](http://vuejs.org/docs)

## Development

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vue",
"version": "0.7.2",
"main": "dist/vue.js",
"description": "Lightweight, Simple, Fast & Composable MVVM library for building interactive user interfaces.",
"description": "Simple, Fast & Composable MVVM for building interative interfaces",
"authors": ["Evan You <yyx990803@gmail.com>"],
"license": "MIT",
"ignore": [
Expand Down
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.7.2",
"main": "src/main.js",
"author": "Evan You <yyx990803@gmail.com>",
"description": "Lightweight, Simple, Fast & Composable MVVM library for building interactive user interfaces.",
"description": "Simple, Fast & Composable MVVM for building interative interfaces",
"keywords": ["mvvm", "framework", "data binding"],
"license": "MIT",
"scripts": [
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"url": "http://evanyou.me"
},
"license": "MIT",
"description": "Lightweight, Simple, Fast & Composable MVVM library for building interactive user interfaces.",
"description": "Simple, Fast & Composable MVVM for building interative interfaces",
"keywords": [
"mvvm",
"browser",
Expand Down

0 comments on commit 74e2f38

Please sign in to comment.