You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
daisnkzy
changed the title
Docs (useNuxtData => #Optimistic Updates).Incorrect Use of Reference Assignment in originalTodos.value = todos.value
Docs (useNuxtData => #Optimistic Updates).Incorrect Use of Reference Assignment in previousTodos.value = todos.value
Aug 30, 2024
i think the example code should use
`// Current implementation
previousTodos.value = todos.value;
// Proposed change
previousTodos.value = [...todos.value];`
The text was updated successfully, but these errors were encountered: