Top "Vue-router" questions

Vue Router is a routing library for single-page applications designed for use with the Vue.

Vue.js redirection to another page

I'd like to make a redirection in Vue.js similar to the vanilla javascript window.location.href = 'some_url' How …

vue.js url-routing vuejs2 vue-router
How can I get query parameters from a URL in Vue.js?

How can I fetch query parameters in Vue.js? E.g. http://somesite.com?test=yay. Can’t find a …

javascript vue.js vue-router url-parameters
How to add external JS scripts to VueJS Components

I've to use two external scripts for the payment gateways. Right now both are put in the index.html file. …

javascript vue.js vuejs2 vue-component vue-router
How to set URL query params in Vue with Vue-Router

I am trying to set query params with Vue-router when changing input fields, I don't want to navigate to some …

javascript vue-router vue.js
How to pass a value from Vue data to href?

I'm trying to do something like this: <div v-for="r in rentals"> <a bind-href="'/job/'r.…

vue.js vue-router
Do we have router.reload in vue-router?

I see in this pull request: Add a router.reload() Reload with current path and call data hook again But …

vue.js vue-router vuejs2
How to remove hashbang from url?

How to remove hashbang #! from url? I found option to disable hashbang in vue router documentation ( http://vuejs.github.io/…

vue.js vue-router
VueJs get url query

I'm developing a website with vuejs and at this moment I'm in a trouble, I need get the url query (…

vuejs2 vue-component vue.js vue-router
Vuejs: Event on route change

In my main page I have dropdowns that show v-show=show by clicking on link @click = "show=!show" and I …

vue.js vuejs2 vue-router
Can vue-router open a link in a new tab?

I have a summary page and a detail subpage. All of the routes are implemented with vue-router (v 0.7.x) using …

javascript vue.js vue-router