effect memory leak #7107
liuseen-l
started this conversation in
General Discussions
Replies: 1 comment
-
Moved to discussions as it it neither a feauture request (as which is was submitted) nor a sufficient bug report. A few quick words: Nesting effects in one another is not a very good idea, yes. But this bears little relevance to the way in which effects are used in Vue in practice. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
What problem does this feature solve?
test('effect memory leak', () => {
const original = { foo: 1, bar: 1 }
const original2 = { bar: 1 }
const state = reactive(original)
const state2 = reactive(original2)
})
What does the proposed API look like?
Is there a security issue with this?
Beta Was this translation helpful? Give feedback.
All reactions