0
点赞
收藏
分享

微信扫一扫

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

let timer = setInterval(() => {
this.getUserAccountList()
}, 10 * 1000)
this.$once('hook:beforeDestroy', () => {
clearInterval(timer)
timer = null
})


举报

相关推荐

0 条评论