[toc]
modules即是store里的store
一般是按照不同组件模块而分的子store
并且可以无限递归先去
```
,modules:{
a:{
//默认为false
// namespaced:true,
state:{
text:'a'
}
,mutations:{
updateText(state){
//这个state是 a模块单独的state 而不是全部
}
}
,getters:{
textPlus(state,getters,rootState){
return state.text + rootState.count;
}
}
,actions:{
// add(ctx){
// //ctx是值属于当前模块的子store对象
// }
add({state,commit,rootState}){
//提交到的是本模块的updateText
//{root:true}能提交到全局的updateText
// commit('updateText',rootState.count/*,{root:true}*/);
commit('updateCount',{num:56789},{root:true});
}
}
}
,b:{
state:{
text:'b'
}
}
}
});
```
- 空白目录
- 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