Skip to content

Commit c1c1d51

Browse files
committed
update
1 parent 42eb887 commit c1c1d51

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/routes/reference/basic-reactivity/create-effect.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ This function will re-run whenever any of its dependencies change.
2929
This is particularly relevant when using the [`children`](/reference/component-apis/children) function.
3030

3131
- After the initial execution, effects will re-run whenever any of their dependencies change.
32+
3233
When multiple dependencies are updated within the same batch, the effect will only run once.
34+
3335
- The order in which effects run is **not guaranteed**.
3436
- Effects always run **after** any pure computations (such as [memos](/concepts/derived-values/memos)) within the same update cycle.
3537
- Effects **are not executed** during Server-Side Rendering (SSR) or during the initial client hydration.

0 commit comments

Comments
 (0)