Vue路由跳轉(zhuǎn)的四種方式用法及區(qū)別
點(diǎn)擊打開(kāi)視頻講解更加詳細(xì)
一盾舌、router-link
<router-link :to="{name:'home'}">
<router-link :to="{path:'/home'}"> //name,path都行, 建議用name
// 注意:router-link中鏈接如果是'/'開(kāi)始就是從根路由開(kāi)始,如果開(kāi)始不帶'/',則從當(dāng)前路由開(kāi)始维雇。
二沼死、this.$router.push()
this.$router.push('/home')
this.$router.push({name:'home'})
this.$router.push({path:'/home'})
三洛搀、this.$router.replace()
this.$router.replace('/home')
this.$router.replace({name:'home'})
this.$router.replace({path:'/home'})
四、this.$router.go(n)
this.$router.go(n)
向前或者向后跳轉(zhuǎn)n個(gè)頁(yè)面漠其,n可為正整數(shù)或負(fù)整數(shù)
ps : 區(qū)別
- this.$router.push
跳轉(zhuǎn)到指定url路徑贫悄,并想history棧中添加一個(gè)記錄瑞驱,點(diǎn)擊后退會(huì)返回到上一個(gè)頁(yè)面
- this.$router.replace
跳轉(zhuǎn)到指定url路徑,但是history棧中不會(huì)有記錄窄坦,點(diǎn)擊返回會(huì)跳轉(zhuǎn)到上上個(gè)頁(yè)面 (就是直接替換了當(dāng)前頁(yè)面)
- this.$router.go(n)
向前或者向后跳轉(zhuǎn)n個(gè)頁(yè)面唤反,n可為正整數(shù)或負(fù)整數(shù)
若對(duì)您有幫助,請(qǐng)點(diǎn)擊跳轉(zhuǎn)到B站一鍵三連哦鸭津!感謝支持M獭!逆趋!