vue 구현 5 초 후 새 페이지 건너뛰기

1262 단어

 

export default {
    data(){
        return {
            count:"",//   
        }
    }
},
 
mounted(){
   
},
 
methods: {
  //3        
    startDivi(){
        const TIME_COUNT = 5;
        if(!this.timer){
            this.count = TIME_COUNT;
            this.show = false;
            this.timer = setInterval(()=>{
            if(this.count > 0 && this.count <= TIME_COUNT){
                this.count--;
            }else{
                this.show = true;
                clearInterval(this.timer);
                this.timer = null;
                //         
                this.$router.push({
                    path: ''
                });
            }
          },1000)
        }
    },
}

ElementUI에서 loading 사용
//  elementUI    
const loading = this.$loading({
       lock: true,
       text: '     ',
       spinner: 'el-icon-loading',
       background: 'rgba(0, 0, 0, 0.7)'
});
 setTimeout(() => {
      this.$router.push({path: "/Map_MainPage"}); //          path
      loading.close();
 }, 8000);

좋은 웹페이지 즐겨찾기