fix(Popup): memory leak issue (#9336)

* fix: 修复弹框组件内存泄漏问题

* fix: es5兼容

Co-authored-by: qiuhuibin <qiuhuibin@bigo.sg>
This commit is contained in:
qhbin 2021-08-26 11:51:39 +08:00 committed by GitHub
parent ff08987e3c
commit 20d3f41d6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 0 deletions

View File

@ -13,4 +13,12 @@ export const context = {
find(vm: any): StackItem | undefined {
return this.stack.filter((item) => item.vm === vm)[0];
},
remove: function remove(vm: any) {
const item = this.find(vm);
if(!item) return;
item.vm = null;
item.overlay = null;
const index = this.stack.indexOf(item);
this.stack.splice(index, 1);
},
};

View File

@ -73,5 +73,6 @@ export function removeOverlay(vm: any) {
const item = context.find(vm);
if (item) {
removeNode(item.overlay.$el);
context.remove(vm);
}
}