chore(core): setTimeout后清除timeid

This commit is contained in:
roymondchen 2024-12-03 15:56:12 +08:00
parent 64a692b32a
commit 77a9f5bd60

View File

@ -61,6 +61,7 @@ export default class Flexible {
clearTimeout(this.tid);
this.tid = setTimeout(() => {
this.refreshRem();
this.tid = undefined;
}, 300);
};