You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`vue-router` is the official router for [Vue.js](http://vuejs.org). It deeply integrates with Vue.js core to make building Single Page Applications with Vue.js a breeze. Features include:
8
8
9
-
Docs incoming. For now please refer to the `/example` folder.
9
+
- Nested route/view mapping
10
+
- Modular, component-based router configuaration
11
+
- Route params, query, wildcards
12
+
- View transition effects powered by Vue.js' transition system
13
+
- Fine-grained navigation control
14
+
- Links with automatic active CSS classes
15
+
- HTML5 history mode or hash mode, with auto-fallback in IE9
16
+
- Restore scroll position when going back in history mode
10
17
11
-
### Build
18
+
Get started with the [documentation](http://vuejs.github.io/vue-router).
19
+
20
+
### Development Setup
12
21
13
22
```bash
23
+
# install deps
14
24
npm install
25
+
26
+
# build dist files
15
27
npm run build
16
-
```
17
28
18
-
If you want to contribute, help write the tests!
29
+
# serve example app at localhost:8080
30
+
# and unit tests at localhost:8081
31
+
npm run dev
32
+
33
+
# lint & run unit tests with coverage report
34
+
npm test
35
+
36
+
# run e2e tests for example app in Chrome & Firefox
0 commit comments