文章摘要:vue中$route和$router的区别有哪些 vue中$router与$route的区别
vue中$route和$router的区别: 1.$router是路由实例,而$route为当前router跳 […]
vue中$route和$router的区别:
1.$router是路由实例,而$route为当前router跳转对象;
2.$route包括path、params、hash、query、fullPath、matched、name等路由信息参数,而$router包括了路由的跳转方法,钩子函数等,在script标签中想要导航到不同的URL,可使用$router.push方法。