vue-router
vue-router copied to clipboard
🚦 The official router for Vue 2
### What problem does this feature solve? This feature would address many requests seen in relation to having greater control over applications history, stack management, initial route, and a few...
### What problem does this feature solve? For vue-router v2.0.0 `path-to-regexp` was moved from a dependency to a [dev dependency](https://github.com/vuejs/vue-router/commit/76d83b6eb4af507763c5ee6f61a52ed9a7804572) (thanks @pi0 for finding the commit). Unfortunately the commit doesnt...
### Version 3.0.1 ### Reproduction link [http://jsfiddle.net/w6q9uyro/](http://jsfiddle.net/w6q9uyro/) ### Steps to reproduce Run this link: http://jsfiddle.net/w6q9uyro/ Try route to `/home` ### What is expected? It should load component `Home` and run...
### Version 2.7.0 ### Reproduction link [https://codesandbox.io/embed/xokkpop154?module=%2Frouter%2Findex.js](https://codesandbox.io/embed/xokkpop154?module=%2Frouter%2Findex.js) ### Steps to reproduce 1. Create a route definition for `/` which redirects to `/a` 2. Create a route definition for `/a` which...
### Version 3.0.3 ### Reproduction link [https://jsfiddle.net/orzwg537/](https://jsfiddle.net/orzwg537/) ### Steps to reproduce Run the fiddle and look in console ### What is expected? a message saying error caught ### What is...
### What problem does this feature solve? Using Date.now() as key will provide a unique and comparable* identifier in relation to history navigation allowing back/forward navigation to be detected and...
### Version 2.7.0 ### Reproduction link http://jsfiddle.net/9r6xhqbp/37/ ### Steps to reproduce Add the following to your router: ```js { path: '/view', alias: '/view/*', redirect: '/analytics', }, ``` Navigate to /view/blabla....
### Vue.js / vue-router versions 2.1.1 ### Steps to reproduce * Create a route that uses a "zero or more" operator: `'/directions/:itineraryItems(.*)*'` * Access this route with a matching URL:...
### What problem does this feature solve? `caseSensitive` and `pathToRegexpOptions` are set on each of the routes individually, which is redundant and not clean especially when working a very large...
### Version 3.0.1 ### Reproduction link [https://codesandbox.io/s/vue-routing-example-mjmxd](https://codesandbox.io/s/vue-routing-example-mjmxd) ### Steps to reproduce Click on "goodbye" Click back in browser Click forward in browser last url is pushed into history ### What...