This commit is contained in:
nvms 2024-11-01 15:23:36 -04:00
parent 9c75ee6bc1
commit 4d71b03402
2 changed files with 1 additions and 5 deletions

View File

@ -1,7 +1,6 @@
import { App } from ".";
import { computed } from "./reactivity/computed";
import { reactive } from "./reactivity/reactive";
import { ref } from "./reactivity/ref";
import { html } from "./util";
// ------------------------------------------------

View File

@ -17,7 +17,6 @@ import {
extractPropName,
findSlotNodes,
findTemplateNodes,
insertBefore,
isElement,
isEventAttribute,
isMirrorProp,
@ -25,9 +24,7 @@ import {
isPropAttribute,
isRegularProp,
isSpreadProp,
isTemplate,
isText,
nextTick,
Slot,
stringToElement,
Template,
@ -411,7 +408,7 @@ export class Block {
block.teardown();
});
this.context.effects.forEach(stop);
this.context.effects.forEach((e) => e.stop());
}
}