vuex源码分析
Posted kanyu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vuex源码分析相关的知识,希望对你有一定的参考价值。
代码设计
代码行数
3.11版本的代码编译后为1017行
目录结构
代码结构
index入口
import Store, install from "./store.js";
import
mapState,
mapMutations,
mapGetters,
mapActions,
createNamespacedHelpers
from "./helpers.js";
export default
Store,
install,
version: "__VERSION__",
mapState,
mapMutations,
mapGetters,
mapActions,
createNamespacedHelpers
;
store结构
// import ...
let Vue;
export class Store
// prototype fns...
// global fns...
export function install(_Vue)
Vue = _Vue;
applyMixin(Vue);
进行中...
以上是关于vuex源码分析的主要内容,如果未能解决你的问题,请参考以下文章