1. 程式人生 > >vue 定時重新整理頁面

vue 定時重新整理頁面

開發十年,就只剩下這套架構體系了! >>>   

mounted() {
  if (this.timer) {
    clearInterval(this.timer)
  } else {
    this.timer = setInterval(() => {
      console.log('5S重新整理一次資料')
    }, 5000)
  }
},
destroyed() {
  clearInter