Hiroaki Ninomiya hace 8 años
padre
commit
84a503e293
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      docs/ja/state.md

+ 1 - 1
docs/ja/state.md

@@ -13,7 +13,7 @@ Vuex は**単一ステートツリー (single state tree)**を使います。つ
 ``` js
 // Vue コンポーネントの定義
 computed: {
-count: function() {
+  count: function() {
     return store.state.count
   }
 }