mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
docs: correct titile level for 04b_iteration.md (#2080)
This commit is contained in:
parent
9c44da2594
commit
1a295bb3d6
1 changed files with 2 additions and 2 deletions
|
@ -259,12 +259,12 @@ You’ll notice a few differences here:
|
|||
Every time `data` changes, now, each memo will be recalculated. If its value has changed,
|
||||
it will update its text node, without rerendering the whole row.
|
||||
|
||||
## Pros
|
||||
### Pros
|
||||
|
||||
We get the same fine-grained reactivity of the signal-wrapped version, without needing to
|
||||
wrap the data in signals.
|
||||
|
||||
## Cons
|
||||
### Cons
|
||||
|
||||
It’s a bit more complex to set up this memo-per-row inside the `<For/>` loop rather than
|
||||
using nested signals. For example, you’ll notice that we have to guard against the possibility
|
||||
|
|
Loading…
Reference in a new issue