在Vue中amounted设置单页面的刷新,离开该页面停止自动刷新。

    let timer = setInterval(() => {
      this.getUserAccountList()
    }, 10 * 1000)
    this.$once('hook:beforeDestroy', () => {
      clearInterval(timer)
      timer = null
    })
posted @ 2023-03-01 13:30  ukyo--碳水化合物  阅读(28)  评论(0)    收藏  举报