router로 페이지를 이동하는 함수에는 세가지가 있다.· push : URL 이동. 히스토리 스택에 추가된다. · replace : URL 이동. 현재 페이지를 대체하므로 히스토리 스택에 추가되지 않는다. · go : 히스토리 이동. 숫자만큼 앞, 뒤로 이동할 수 있다. $router.pushthis.$router.push('/') // URL로 이동this.$router.push({name: 'home'}) // /home 으로 이동this.$router.push({name: 'detail', params: {id: '001'} }) // /detail/001 로 이동this.$router.push({ path:'/list', query: { tag: 'vue' } }); // list?ta..