Vue
Vue Router: 이전 페이지로 돌아가기 라우팅
뜻 지, 깨달음 오
2023. 2. 2. 05:33
참고한 블로그:
https://sunny921.github.io/posts/vuejs-router-03/
this.$router.go(-1) :바로 전 페이지
this.$router.go(1):바로 앞 페이지
methods: {
goBack () {
this.$router.go(-1)
}
}