소스 검색

docs: fix pull request url for getters note (#2018)

Co-authored-by: Kia King Ishii <kia.king.08@gmail.com>
Jon Newton 4 년 전
부모
커밋
5b8ad0a798
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      docs/guide/getters.md

+ 1 - 1
docs/guide/getters.md

@@ -17,7 +17,7 @@ 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.2 to be released. You can learn more at [PR #1883](https://github.com/vuejs/vuex/pull/1883).
+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/1878).
 :::
 
 Getters will receive the state as their 1st argument: