Answer the question
In order to leave comments, you need to log in
How to pass query when navigating to another page?
It is necessary that the query does not disappear when moving to another page
router.beforeEach((to, from, next) => {
next({ query: from.query })
}
Vue.mixin({
beforeRouteEnter(to, from, next) {
next({ query: from.query })
}
})
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question