File tree Expand file tree Collapse file tree 5 files changed +46
-1
lines changed Expand file tree Collapse file tree 5 files changed +46
-1
lines changed Original file line number Diff line number Diff line change 4
4
explorations
5
5
TODOS.md
6
6
* .log
7
+ docs /_book
Original file line number Diff line number Diff line change 15
15
- HTML5 history mode or hash mode, with auto-fallback in IE9
16
16
- Restore scroll position when going back in history mode
17
17
18
- Get started with the [ documentation] ( http://vuejs.github.io/vue-router ) .
18
+ Get started with the [ documentation] ( http://vuejs.github.io/vue-router ) (WIP) .
19
19
20
20
### Development Setup
21
21
Original file line number Diff line number Diff line change
1
+ ../README.md
Original file line number Diff line number Diff line change
1
+ # Summary
2
+
3
+ - [ Installation] ( installation.md )
4
+ - [ Basic Usage] ( basic.md )
5
+ - [ Router Options] ( options.md )
6
+ - [ Top Level API] ( api/README.md )
7
+ - [ router.map] ( api/map.md )
8
+ - [ router.on] ( api/on.md )
9
+ - [ router.redirect] ( api/redirect.md )
10
+ - [ router.alias] ( api/alias.md )
11
+ - [ router.beforeEach] ( api/before-each.md )
12
+ - [ router.go] ( api/go.md )
13
+ - [ router.replace] ( api/replace.md )
14
+ - [ router.start] ( api/start.md )
15
+ - [ router.stop] ( api/stop.md )
16
+ - [ View Lifecycle Configuration] ( config/README.md )
17
+ - [ data] ( config/data.md )
18
+ - [ activate] ( config/activate.md )
19
+ - [ deactivate] ( config/deactivate.md )
20
+ - [ canActivate] ( config/can-activate.md )
21
+ - [ canDeactivate] ( config/can-deactivate.md )
22
+ - [ canReuse] ( config/can-reuse.md )
Original file line number Diff line number Diff line change
1
+ # Installation
2
+
3
+ ### Direct Download
4
+
5
+ See [ dist folder] ( https://github.com/vuejs/vue-router/tree/dev/dist ) . Note the dist files are always the latest stable - it's not update-to-date with the ` dev ` branch source.
6
+
7
+ ### NPM
8
+
9
+ ``` bash
10
+ npm install vue-router
11
+ # dev branch
12
+ npm install vuejs/vue-router#dev
13
+ ```
14
+
15
+ ### Bower
16
+
17
+ ``` bash
18
+ bower install vue-router
19
+ # dev branch
20
+ bower install vuejs/vue-router#dev
21
+ ```
You can’t perform that action at this time.
0 commit comments