vue3:去除定时器

今天写了一个功能,每五秒刷新一次页面

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

移除

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

おすすめ

転載: blog.csdn.net/weixin_47194802/article/details/132334110