nicenote/source/_posts/vuex-模块介绍.md
jiangzhixiong d12218f8ba blogConfig
2017-11-26 12:58:39 +08:00

26 lines
448 B
Markdown
Executable File

---
title: vuex 使用技巧
date: 2017-06-15 18:36:30
tags: [vue, vuex]
categories: web前端
---
## Action
提供方法和API请求,类似于mutation
> mutation 修改 state 只能是同步的
* action 充满了各种异步 api
```
actions: {
increment (context) {
context.commit('increment')
}
}
另一种写法
increment({commit}) {
commit('increment')
}
```
## 分发 Action
> store.dispatch('increment')