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

作者:​​ukyo--阿涅丝​​