vue如何路由跳转 vue如何实现路由跳转

主机教程 建站分享 2年前 (2022-12-18) 173次浏览

文章摘要:vue如何路由跳转 vue如何实现路由跳转

在vue中实现路由跳转的方法有:1.使用this.$router.push()跳转;2.使用router-li […]

在vue中实现路由跳转的方法有:1.使用this.$router.push()跳转;2.使用router-link跳转;

在vue中实现路由跳转的方法有以下几种

1.使用this.$router.push()跳转

1)不带参跳转

this.$router.push('/home')

this.$router.push({name:'home'})

this.$router.push({path:'/home'})

2)带参跳转

this.$router.push({name:'home',query: {id:'1'}})

this.$router.push({path:'/home',query: {id:'1'}})

this.$router.push({name:'home',params: {id:'1'}})

2.使用router-link跳转

1)不带参跳转

<router-link :to="{name:'home'}"> 

<router-link :to="{path:'/home'}">

2)带参跳转

<router-link :to="{name:'home', params: {id:1}}">
<router-link :to="{name:'home', query: {id:1}}">


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:vue如何路由跳转 vue如何实现路由跳转
文章链接:http://www.7966.org/post/11302.html
转载请注明出处

喜欢 (0)