大家好,欢迎来到IT知识分享网。
1. router-link
<router-link to="/recommend"> // 路由跳转组件
<button class="button">页面跳转</button>
</router-link>
2. this.$router.push
this.$router.push({
path: '/recommend'})
this.$router.push({
path: '/recommend',query:{
id:'2'}})
this.$router.push({
name: '/recommend',params:{
id:'6'}})
路由传参params 和query两种方式的区别:
- query更加类似于我们ajax中get传参,params则类似于post,前者在浏览器地址栏中显示参数,后者则不显示
- query要用path来引入,params要用name来引入,接收参数分别是this.route.query.name和this.route.params.name。
3. window.open(url)
方法里面定义
openUrl () {
// 要跳转的url地址
const url = window.location.protocol + '//' + window.location.host + '/template/left'
window.open(url)
}
4. a标签
<a href="/left"
title="页面跳转">跳转</a>
免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://yundeesoft.com/23629.html