参考答案
全局的路由钩子函数
单个的路由钩子函数(路由独享)
组件内的路由钩子函数
参考答案
参考答案
路由导航守卫都是在vue实例生命周期钩子函数之前执行的
参考答案
route是“路由信息对象”,包括path,params,hash,query,fullPath,matched,name等路由信息参数
router是“路由实例对象”,包括了路由的跳转方式,钩子函数等
参考答案
<router-link to="home"></router-link>
this.$router.push({path: "home", query: {num: 1}})
参考答案
this.$route.query.userId
this.$route.params.userId
参考答案
query: this.$router.push({path:"home", query:{id:"123"}})
this.$route.query.id
params: this.$router.push({path:"home", query:{id:"123"}})
this.$route.params.id
参考答案
原文:https://www.cnblogs.com/naturl/p/15173914.html