淘先锋技术网

首页 1 2 3 4 5 6 7

vue项目如何在进入项目前定时器?

vue项目在进入项目前定时器,就需要设立settimeout参数,还要安装清除定时器的功能,确保没有后顾之忧。

vue定时器分为两种,setTimeout(不重复)与setInterval(重复),可循环,可定时。

都接受两个参数(参数一:所使用的函数,参数二:时间)

export default { name: "定时器" data() { return { } } }, mounted() { this.$nextTick(() => { this.timer = setInterval(this.abc, 1000) // 使用定时器 this.timer = setTimeout(this.abc, 1000) }) }, beforeDestroy() { clearInterval(this.timer) //清除定时器 clearTimeout(this.timer) }, methods: { abc() { console.log("我使用了定时器") // 定时器使用的函数 } } }。