From c1968eec2ebd9308961711cb7c7a519f9be07e68 Mon Sep 17 00:00:00 2001 From: Saiful Amin Date: Wed, 23 Jun 2021 12:16:42 +0530 Subject: [PATCH] Fix link of #1878 and update status PR #1878 link fixed. Updated status as per PR #1883 --- docs/guide/getters.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guide/getters.md b/docs/guide/getters.md index f2242af88..075e15839 100644 --- a/docs/guide/getters.md +++ b/docs/guide/getters.md @@ -17,11 +17,11 @@ If more than one component needs to make use of this, we have to either duplicat Vuex allows us to define "getters" in the store. You can think of them as computed properties for stores. ::: warning WARNING -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). +As of Vue 3.1, 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 #1878](https://github.com/vuejs/vuex/pull/1878). ::: ::: warning WARNING -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). +As of Vue 3.1, 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). ::: Getters will receive the state as their 1st argument: