8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6750c77 commit cd5b8eeCopy full SHA for cd5b8ee
src/v2/guide/state-management.md
@@ -20,13 +20,13 @@ order: 502
20
Vue アプリケーションの妥当性を担保しているのが生の `data` オブジェクトだということは見過ごされがちです。Vue インスタンスは単純に `data` オブジェクトへのアクセスをプロキシします。それゆえに、複数のインスタンスによって共有されうる状態がある場合、シンプルに同一の状態を共有することができます:
21
22
``` js
23
-const sourceOfTruth = {}
+var sourceOfTruth = {}
24
25
-const vmA = new Vue({
+var vmA = new Vue({
26
data: sourceOfTruth
27
})
28
29
-const vmB = new Vue({
+var vmB = new Vue({
30
31
32
```
0 commit comments