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
Copy file name to clipboardexpand all lines: docs/guide/getters.md
+4
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,10 @@ Vuex allows us to define "getters" in the store. You can think of them as comput
20
20
As of Vue 3.0, the getter's result is **not cached** as the computed property does. This is a known issue that requires Vue 3.1 to be released. You can learn more at [PR #1878](https://github.com/vuejs/vuex/pull/1883).
21
21
:::
22
22
23
+
::: warning WARNING
24
+
As of Vue 3.0, the getter's result is **not cached** as the computed property does. This is a known issue that requires Vue 3.2 to be released. You can learn more at [PR #1883](https://github.com/vuejs/vuex/pull/1883).
25
+
:::
26
+
23
27
Getters will receive the state as their 1st argument:
0 commit comments