Vue

Vue Router: 이전 페이지로 돌아가기 라우팅

뜻 지, 깨달음 오 2023. 2. 2. 05:33

참고한 블로그:

https://sunny921.github.io/posts/vuejs-router-03/

 

(Vue.js) 라우터 기초 (3) - push, replace, go 사용법

 

sunny921.github.io

 

 

this.$router.go(-1) :바로 전 페이지

this.$router.go(1):바로 앞 페이지

 

 

  methods: {
    goBack () {
      this.$router.go(-1)
    }
  }