route和 router的區別是什麼

2022-06-22 11:45:10 字數 369 閱讀 9815

在路由跳轉的時候除了用router-link標籤以外需要在script標籤在事件裡面跳轉,所以有個方法就是在script標籤裡面寫this.$router.push('要跳轉的路徑名')

$route為當前router跳轉物件裡面可以獲取name、path、query、params、fullpath、matched、hash等

$router為vuerouter例項,是乙個全域性路由物件,包含了路由跳轉的方法、鉤子函式等,想要導航到不同url,則使用$router.push方法

返回上乙個history也是使用$router.go方法

router和 route的區別

router是乙個vuerouter的例項 可以導航到不同的路由裡 route是 router跳轉到的當前乙個物件,裡面包含該物件的path query name params 1 this.router.push this.router.push detail 使用當前的query this.ro...

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標籤在事...