created () {
const timer = setInterval(() => { xxxx }, 1000);
this.$once("hook:beforeDestroy", () => { clearInterval(timer); });
}