App.vue

김형우·2021년 12월 23일
0

vue.js

목록 보기
18/30

문제점

f5를 누를때마다 홈으로 가버림.
컴포넌트 채로 새로고침 됨.

해결책

sessionStorage.setItem('activeIndex2', idx);
를 사용해서 세션저장소에 현재 메뉴의 index값 저장
sessionStorage.getItem('activeIndex2');
를 사용해 저장 값 가져오기

created(){
      const tmp = sessionStorage.getItem('activeIndex2');
      console.log(tmp);
      if(tmp === null){
        this.activeIndex2 = '100';
        this.$router.push({path:'/home'});
      }
      else{
        this.activeIndex2 = tmp;
      }
profile
The best

0개의 댓글