@@ -1,6 +1,6 @@
# Vuex
-> 注意: TypeScript ユーザ向けは、vuex@>= 3.0 と vue@>=2.5 が必須、逆もまた同様です。
+> 注意: TypeScript ユーザ向けは、vuex@3.0+ と vue@2.5+ が必須、逆もまた同様です。
- [リリースノート](https://github.com/vuejs/vuex/releases)
- [インストール](installation.md)
@@ -157,7 +157,7 @@ actions: {
}
```
-最終的に JavaScript の機能として近く導入される [async / await](https://tc39.github.io/ecmascript-asyncawait/) を使用することで、次のようにアクションを組み合わせることができます:
+最終的に [async / await](https://tc39.github.io/ecmascript-asyncawait/) を使用することで、次のようにアクションを組み合わせることができます:
``` js
// `getData()` と `getOtherData()` が Promise を返すことを想定している
@@ -67,7 +67,7 @@ computed: {
```js
getters: {
// ...
- getTodoById: (state, getters) => (id) => {
+ getTodoById: (state) => (id) => {
return state.todos.find(todo => todo.id === id)