250x250
Notice
Recent Posts
Recent Comments
«   2025/02   »
1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28
Tags
more
Archives
Today
Total
관리 메뉴

진스

페이지 변경 감시 router 본문

Vue

페이지 변경 감시 router

입방정 2022. 5. 31. 10:43
728x90
 watch: {
    $route(to, from) { 
      if (to.path !== from.path) {
      ..
      }
    },
  },
  
  
   watch:{
    $route(){
        const width = window.innerWidth
        if (width <= 1023)this.popupClose()
        // route 변경.  모바일때 메뉴화면 닫힘
      }
    }
728x90
Comments