浏览代码

docs(en/zh/ja): remove duplicate warning (#2023)

Alan Wang 3 年之前
父节点
当前提交
7aa056126a
共有 3 个文件被更改,包括 2 次插入6 次删除
  1. 0 4
      docs/guide/getters.md
  2. 1 1
      docs/ja/guide/getters.md
  3. 1 1
      docs/zh/guide/getters.md

+ 0 - 4
docs/guide/getters.md

@@ -16,10 +16,6 @@ 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).
-:::
-
 ::: 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).
 :::

+ 1 - 1
docs/ja/guide/getters.md

@@ -17,7 +17,7 @@ computed: {
 Vuex を利用するとストア内に "ゲッター" を定義することができます。それらをストアの算出プロパティと考えることができます。
 
 ::: warning 警告
-Vue 3.0 では、ゲッターの結果は算出プロパティのように**キャッシュされません**。これは既知の問題で、Vue 3.1 がリリースされる必要があります。詳細は [PR #1878](https://github.com/vuejs/vuex/pull/1883) をご確認ください。
+Vue 3.0 では、ゲッターの結果は算出プロパティのように**キャッシュされません**。これは既知の問題で、Vue 3.2 がリリースされる必要があります。詳細は [PR #1878](https://github.com/vuejs/vuex/pull/1883) をご確認ください。
 :::
 
 ゲッターは第1引数として、state を受け取ります:

+ 1 - 1
docs/zh/guide/getters.md

@@ -17,7 +17,7 @@ computed: {
 Vuex 允许我们在 store 中定义“getter”(可以认为是 store 的计算属性)。
 
 ::: warning 注意
-从 Vue 3.0 开始,getter 的结果不再像计算属性一样会被缓存起来。这是一个已知的问题,将会在 3.1 版本中修复。详情请看 [PR #1878](https://github.com/vuejs/vuex/pull/1883)。
+从 Vue 3.0 开始,getter 的结果不再像计算属性一样会被缓存起来。这是一个已知的问题,将会在 3.2 版本中修复。详情请看 [PR #1878](https://github.com/vuejs/vuex/pull/1883)。
 :::
 
 Getter 接受 state 作为其第一个参数: