Route Update 이전과 '$route' 감시와의 차이점 - Vue.js? 아시다시피 사용하는 컴포넌트와 동일한 컴포넌트의 파라미터 변경에 대응하기 위해beforeRouteUpdate후크 또는 감시$route. $route 감시: const User = { template: '...', watch: { '$route' (to, from) { // react to route changes... } } } beforeRouteUpdate 메서드: const User = { template: '...', beforeRouteUpdate (to, from, next) { // react to route changes... next() } } 이 둘의 차이점은 무엇입니까?둘 다 같은 경우 vue 라우터가 도..