Browse Source

docs: update warning version (#2000)

Co-authored-by: caimengyong <caimengyong@baidu.com>
Co-authored-by: Alan Wang <948467222@qq.com>
heart 3 years ago
parent
commit
8f66c8bce8
1 changed files with 4 additions and 0 deletions
  1. 4 0
      docs/guide/getters.md

+ 4 - 0
docs/guide/getters.md

@@ -20,6 +20,10 @@ Vuex allows us to define "getters" in the store. You can think of them as comput
 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).
 :::
 
+::: 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).
+:::
+
 Getters will receive the state as their 1st argument:
 
 ``` js