Skip to content

Commit 74e2f38

Browse files
committed
meta
1 parent 1e58721 commit 74e2f38

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

README.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
1-
# VueJS [![Build Status](https://travis-ci.org/yyx990803/vue.png?branch=master)](https://travis-ci.org/yyx990803/vue)
1+
# Vue.js [![Build Status](https://travis-ci.org/yyx990803/vue.png?branch=master)](https://travis-ci.org/yyx990803/vue)
22

3-
> Lightweight, Simple, Fast & Composable MVVM library for building interactive user interfaces.
3+
> Simple, Fast & Composable MVVM for building interative interfaces.
44
55
## Introduction
66

7-
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)
7+
Vue.js is a library that aims to simplify the development of interactive interfaces.
8+
9+
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.
10+
11+
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**.
12+
13+
To learn more, visit [vuejs.org](http://vuejs.org).
814

915
## Browser Support
1016

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

1521
## Documentation
1622

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

1925
## Development
2026

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vue",
33
"version": "0.7.2",
44
"main": "dist/vue.js",
5-
"description": "Lightweight, Simple, Fast & Composable MVVM library for building interactive user interfaces.",
5+
"description": "Simple, Fast & Composable MVVM for building interative interfaces",
66
"authors": ["Evan You <[email protected]>"],
77
"license": "MIT",
88
"ignore": [

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.7.2",
44
"main": "src/main.js",
55
"author": "Evan You <[email protected]>",
6-
"description": "Lightweight, Simple, Fast & Composable MVVM library for building interactive user interfaces.",
6+
"description": "Simple, Fast & Composable MVVM for building interative interfaces",
77
"keywords": ["mvvm", "framework", "data binding"],
88
"license": "MIT",
99
"scripts": [

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"url": "http://evanyou.me"
88
},
99
"license": "MIT",
10-
"description": "Lightweight, Simple, Fast & Composable MVVM library for building interactive user interfaces.",
10+
"description": "Simple, Fast & Composable MVVM for building interative interfaces",
1111
"keywords": [
1212
"mvvm",
1313
"browser",

0 commit comments

Comments
 (0)