We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42eb887 commit c1c1d51Copy full SHA for c1c1d51
1 file changed
src/routes/reference/basic-reactivity/create-effect.mdx
@@ -29,7 +29,9 @@ This function will re-run whenever any of its dependencies change.
29
This is particularly relevant when using the [`children`](/reference/component-apis/children) function.
30
31
- After the initial execution, effects will re-run whenever any of their dependencies change.
32
+
33
When multiple dependencies are updated within the same batch, the effect will only run once.
34
35
- The order in which effects run is **not guaranteed**.
36
- Effects always run **after** any pure computations (such as [memos](/concepts/derived-values/memos)) within the same update cycle.
37
- Effects **are not executed** during Server-Side Rendering (SSR) or during the initial client hydration.
0 commit comments