Browse Source

Fix indent (#644)

Hiroaki Ninomiya 8 years ago
parent
commit
84a503e293
1 changed files with 1 additions and 1 deletions
  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
   }
 }