chore(core): setTimeout后清除timeid

This commit is contained in:
roymondchen 2024-12-03 15:56:12 +08:00 committed by roymondchen
parent 5caae4e953
commit 945aaaddcb

View File

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