$router是乙個vuerouter的例項 可以導航到不同的路由裡
$route是$router跳轉到的當前乙個物件,裡面包含該物件的path、query、name 、params
1、this.$router.push(}) this.$router.push('/detail')
使用當前的query this.$route.query
2、this.$router.push(})
使用當前的params this.$route.params
this.$router.go(n) 向前或向後跳轉多少個頁面(類似於 window.history.go())
router和 route的區別
在vue2.0裡頁面引數是 this.route.query或者 this.route.params 接收router link傳的引數。在路由跳轉的時候除了用router link標籤以外需要在script標籤在事件裡面跳轉,所以有個方法就是在script標籤裡面寫this.router.push...
router和 route的區別
在vue2.0裡頁面引數是 this.rou te.q uery 或者th is route.query或者 this.route.quer y或者t his.route.params 接收router link傳的引數。在路由跳轉的時候除了用router link標籤以外需要在script標籤在事...
vue中 router和 route的區別
在使用vue框架進行開發的時候,我們經常需要用到vuerouter來進行頁面之間的跳轉。所以大部人剛開始都有遇到這麼乙個問題 遇到rou ter和 router和 router 和route會傻傻分不清,不會分辨這兩個的區別,今天就來分析下個人對他們的看法。正文 rou ter是 vuer oute...