前言

1、data 中声明

data () {
   return {
     timer: null,
   }
 },

2、mounted 钩子中定义方案及处理函数

mounted () {
   this.timer = setInterval(()=>{
       //处理部分
   },3000)
 },

3、beforeUnmount或unmounted的钩子中销毁

  beforeUnmount() {
    clearInterval(this.timer)
    this.timer = null;
  },

亲测,好使~

以上

参考链接

官方文档链接

03-05 21:33