vue3: remove timer

I wrote a function today that refreshes the page every five seconds

const intervalId = setInterval(function () {
  getList();
}, 5000);

remove

onBeforeUnmount(() => {
  clearInterval(intervalId);
});

Guess you like

Origin blog.csdn.net/weixin_47194802/article/details/132334110