vue获取当前页面路由
获取当前页面路由
history模式获取路由可以用 window.location.pathname
- 完整url可以用 window.location.href
- 路由路径可以用 this.$route.path 结果: /customizationCompareAnalysis
- 路由路径参数params传参 this.$route.params
- 路由路径参数query传参 this.$route.query
找不到自己要的可以把 window.location打出来找一下
判断当前路由不匹配时跳转
if(this.$route.path!='/Home'){ this.$router.push({ path:'/Home', }) }
vue $router和$route的区别
route相当于当前正在跳转的路由对象 可以从里面获取name,path,params,query等
打印this.$route和this.$router
转载https://blog.csdn.net/yangwqi/article/details/107916506