vue跳转页面的几种方法,vue整个页面跳转

2022年 10月 20日 发表评论
腾讯云正在大促:点击直达 阿里云超级红包:点击领取
免费/便宜/高性价比服务器汇总入口(已更新):点击这里了解
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.namethis.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 rel="external nofollow" href="/left" title="页面跳转">跳转</a>

小咸鱼

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: