直播軟體搭建,vue路由跳轉的四種方式

zhibo系統開發發表於2022-07-14

直播軟體搭建,vue路由跳轉的四種方式

1.不帶引數

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


 2.帶引數

<router-link :to="{name:'home', params: {id:1}}">
this.$router.push() (函式裡面呼叫)


3.不帶引數

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


4.query傳參和params傳參

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


以上就是直播軟體搭建,vue路由跳轉的四種方式, 更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2905749/,如需轉載,請註明出處,否則將追究法律責任。

相關文章