在Vue中amounted设置单页面的刷新,离开该页面停止自动刷新。
let timer = setInterval(() => {
this.getUserAccountList()
}, 10 * 1000)
this.$once('hook:beforeDestroy', () => {
clearInterval(timer)
timer = null
})
本文来自博客园,作者:ukyo--碳水化合物,转载请注明原文链接:https://www.cnblogs.com/ukzq/p/17167853.html