Browse Source

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

Alan Wang 3 năm trước cách đây
mục cha
commit
7aa056126a

+ 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.
 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
 ::: 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.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 を利用するとストア内に "ゲッター" を定義することができます。それらをストアの算出プロパティと考えることができます。
 Vuex を利用するとストア内に "ゲッター" を定義することができます。それらをストアの算出プロパティと考えることができます。
 
 
 ::: warning 警告
 ::: 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引数として、state を受け取ります:

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

@@ -17,7 +17,7 @@ computed: {
 Vuex 允许我们在 store 中定义“getter”(可以认为是 store 的计算属性)。
 Vuex 允许我们在 store 中定义“getter”(可以认为是 store 的计算属性)。
 
 
 ::: warning 注意
 ::: 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 作为其第一个参数:
 Getter 接受 state 作为其第一个参数: