We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18b25a0 commit 6b49fb5Copy full SHA for 6b49fb5
src/core/component.js
@@ -578,9 +578,11 @@ Component.prototype = {
578
*/
579
destroy: function () {
580
this.objectPool.recycle(this.attrValue);
581
+ this.objectPool.recycle(this.nextData);
582
this.objectPool.recycle(this.oldData);
583
+ this.objectPool.recycle(this.previousOldData);
584
this.objectPool.recycle(this.parsingAttrValue);
- this.attrValue = this.oldData = this.parsingAttrValue = undefined;
585
+ this.nextData = this.attrValue = this.oldData = this.previousOldData = this.parsingAttrValue = undefined;
586
}
587
};
588
0 commit comments