hello

pydantic

fastapi orm

sqlalchemy

vue

// 组件被销毁前触发
onBeforeUnmount(async () => {
  stopTimer();
  stopTimer2();
});

// 组件被重新激活时触发
onActivated(() => {
  startTimer();
  startTimer2();
});
// 组件停用时触发(被keep-alive缓存)
onDeactivated(() => {
  stopTimer();
  stopTimer2();
});

posted @ 2024-04-23 17:51  Tank-Li  阅读(5)  评论(0编辑  收藏  举报