Home > Article > Web Front-end > How to use Vue to dynamically set routing parameters
This time I will show you how to use Vue to dynamically set routing parameters, what are the precautions for using Vue to dynamically set routing parameters, the following is a practical case, let’s take a look .
Routing parameters can be dynamically set in vue:
1. Use this.$router.go()
, with js history.go ()
Usage is always, forward 1, backward -1, current page: 0
Note that when using go, there must be an access history record
Case:
<template> <p> <button @click="goht">后退<button> <br/> <button @click="goqj">前进<button> <br/> <button @click="gosx">刷新当前<button> </p> </template> <script> export default { methods: { goht(){ this.$router.go(-1); }, goqj(){ this.$router.go(1); }, gosx(){ this.$router.go(0); //或者 this.$router.go(); } } } </script>
2. Use push call:
Case
<template> <p> <button @click="pageA">去A页面</button> <br/> <button @click="pageB">去B页面</button> <br/> </p> </template> <script> exprot default { methods: { pageA(){ //去路由A页面,字符串形式只能是path,类似to="path" this.$router.push('/RouterA'); }, pageB(){ //去路由B页面,数组形式,类似 :to="{}" this.$router.push( { name: 'RouterB', query: {'name': 'name1', title: 'title1'} //,params:{'name': 'name2', title: 'title2'} } ); } } } </script>
I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to php Chinese website Other related articles!
Recommended reading:
How to use vue implements SMS verification performance optimization
The above is the detailed content of How to use Vue to dynamically set routing parameters. For more information, please follow other related articles on the PHP Chinese website!