vue定时器和关闭定时器

@vue定时器和关闭定时器

vue定时器和关闭定时器

 mounted() {//页面加载后执行方法
  clearInterval(this.timer)
   		 this.setTimer()
  },
  distroyed: function () {//并没用
      console.log('distroyed')
    clearInterval(this.timer)
  },
  beforeDestroy() {//这个才有用
      clearInterval(this.timer)
  },
  methods: {
    setTimer: function () {
    this.timer = setInterval( () => {
              console.log("定时执行方法");
      }, 3000);
  },
 }

vue生命周期 学习
https://segmentfault.com/a/1190000008010666

你可能感兴趣的:(It前端)