Browse Source

Fix superfluous translation (#762)

Rocky 8 years ago
parent
commit
18a3a10f61
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/zh-cn/api.md

+ 1 - 1
docs/zh-cn/api.md

@@ -140,7 +140,7 @@ const store = new Vuex.Store({ ...options })
 
   ``` js
   store.subscribe((mutation, state) => {
-    console.log(mutation.类型)
+    console.log(mutation.type)
     console.log(mutation.payload)
   })
   ```