Skip to content

Commit c4ed3a9

Browse files
committed
update meta
1 parent 0a21249 commit c4ed3a9

File tree

4 files changed

+13
-25
lines changed

4 files changed

+13
-25
lines changed

README.md

Lines changed: 10 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,29 @@
1-
# Vuex [![Build Status](https://img.shields.io/circleci/project/vuejs/vuex/master.svg)](https://circleci.com/gh/vuejs/vuex) [![npm package](https://img.shields.io/npm/v/vuex.svg)](https://www.npmjs.com/package/vuex)
1+
# Vuex [![Build Status](https://img.shields.io/circleci/project/vuejs/vuex/dev.svg)](https://circleci.com/gh/vuejs/vuex)
22

3-
> Flux-inspired Application Architecture for Vue.js.
3+
> Centralized State Management for Vue.js.
44
55
<p align="center">
66
<img width="700px" src="https://raw.githubusercontent.com/vuejs/vuex/master/docs/en/vuex.png">
77
</p>
88

9-
- [Documentation](http://vuejs.github.io/vuex/)
10-
- [Great introduction and explanation by @skyronic](http://skyronic.com/2016/01/03/vuex-basics-tutorial/) (using outdated 0.3.0 API, but still worth a read!)
11-
- [Vuex introduction video - James Browne from London Vue.js Meetup #1](https://www.youtube.com/watch?v=l1KHL-TX3qs)
9+
- [What is Vuex?](http://vuex.vuejs.org/en/intro.html)
10+
- [Full Documentation](http://vuex.vuejs.org/)
1211

1312
## Examples
1413

15-
- [Counter](https://github.com/vuejs/vuex/tree/master/examples/counter)
16-
- [Counter with Hot Reload](https://github.com/vuejs/vuex/tree/master/examples/counter-hot)
17-
- [TodoMVC](https://github.com/vuejs/vuex/tree/master/examples/todomvc)
18-
- [Flux Chat](https://github.com/vuejs/vuex/tree/master/examples/chat)
19-
- [Shopping Cart](https://github.com/vuejs/vuex/tree/master/examples/shopping-cart)
14+
- [Counter](https://github.com/vuejs/vuex/tree/dev/examples/counter)
15+
- [Counter with Hot Reload](https://github.com/vuejs/vuex/tree/dev/examples/counter-hot)
16+
- [TodoMVC](https://github.com/vuejs/vuex/tree/dev/examples/todomvc)
17+
- [Flux Chat](https://github.com/vuejs/vuex/tree/dev/examples/chat)
18+
- [Shopping Cart](https://github.com/vuejs/vuex/tree/dev/examples/shopping-cart)
2019

2120
Running the examples:
2221

2322
``` bash
2423
$ npm install
25-
$ npm run counter # run the counter example
24+
$ npm run dev # serve examples at localhost:8080
2625
```
2726

28-
See [npm scripts](https://github.com/vuejs/vuex/blob/master/package.json#L11-L15) for all example npm scripts.
29-
30-
## Principles
31-
32-
- Terse
33-
- Testable
34-
- Reactive
35-
- Single State Tree
36-
- Hot Reloading
37-
- Time Travel (with [vue-devtools](https://github.com/vuejs/vue-devtools) support)
38-
3927
## License
4028

4129
[MIT](http://opensource.org/licenses/MIT)

docs/book.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"plugins": ["edit-link", "prism", "-highlight", "github"],
44
"pluginsConfig": {
55
"edit-link": {
6-
"base": "https://github.com/vuejs/vuex/tree/master/docs",
6+
"base": "https://github.com/vuejs/vuex/tree/dev/docs",
77
"label": "Edit This Page"
88
},
99
"github": {

docs/en/hot-reload.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ if (module.hot) {
4141
}
4242
```
4343

44-
Checkout the [counter-hot example](https://github.com/vuejs/vuex/tree/master/examples/counter-hot) to play with hot-reload.
44+
Checkout the [counter-hot example](https://github.com/vuejs/vuex/tree/dev/examples/counter-hot) to play with hot-reload.

docs/en/structure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ For any non-trivial app, we will likely need to leverage modules. Here's an exam
2929
   └── products.js # products module
3030
```
3131

32-
As a reference, check out the [Shopping Cart Example](https://github.com/vuejs/vuex/tree/master/examples/shopping-cart).
32+
As a reference, check out the [Shopping Cart Example](https://github.com/vuejs/vuex/tree/dev/examples/shopping-cart).

0 commit comments

Comments
 (0)