mutations是一个对象属性,里面存储着所有可以修改仓库store里数据的方法
这些方法都是**同步方法**,如果想要异步,请使用actions,再在action中调用对应的mutations方法
```
export default {
//第二个参数为payload,如果有多个数据,应该包装成一个对象
// updateCount(state, num) {
// state.count = num;
// }
updateCount(state, {num,num2}) {
console.log('num:',num);
state.count = num;
}
};
```
- 空白目录
- vue-cli
- runtime-only
- Vue对比React
- 组件与实例
- data-binding
- computed的set和get
- scoped
- 事件
- 自定义指令
- 插件
- keep-alive
- $nextTick与生命周期
- 路由
- Vue.use(Router)
- this.$router编程式导航
- this.$route
- new Router
- routes
- mode
- linkClass
- scrollBehavior
- query
- fallback
- base
- router-view
- router-link
- 路由守卫
- 左右切换
- 滚动
- FAQ
- vuex
- 适用
- new Vuex.Store
- state
- mutations
- getters
- actions
- strict
- plugins
- modules
- namespace
- this.$store
- commit
- dispatch
- mapXX
- eventBus
- Vue工程相关
- 引用路径的简化
- css-module
- vue-loader
- 异步加载
- 支持jsx
- 让webpack支持对vuex的热替换
- .eslintrc