vue实现几秒后跳转新页面
程序员文章站
2022-03-03 08:52:11
...
<template>
<div @click="clickJump()">提交</div>
</template>
<script>
export default {
data(){
return {
count:"",//倒计时
}
}
},
mounted(){
},
methods: {
//几秒后进入跳转页面
clickJump(){
const timejump = 1;
if(!this.timer){
this.count = timejump ;
this.show = false;
this.timer = setInterval(()=>{
if(this.count > 0 && this.count <= timejump ){
this.count--;
}else{
this.show = true;
clearInterval(this.timer);
this.timer = null;
//跳转的页面写在此处
this.$router.push({path: '/address'});
}
},100)
}
},
}
</script>
上一篇: java 类的继承,实例化一个类时 构造方法的调用顺序
下一篇: List和Set集合总结