# API Reference ### Vuex.Store ``` js import Vuex from 'vuex' const store = new Vuex.Store({ ...options }) ``` ### Vuex.Store Constructor Options - **state** - type: `Object` The root state object for the Vuex store. [Details](state.md) - **mutations** - type: `{ [type: string]: Function }` Register mutations on the store. The handler function always receives `state` as the first argument (will be module local state if defined in a module), and receives a second `payload` argument if there is one. [Details](mutations.md) - **actions** - type: `{ [type: string]: Function }` Register actions on the store. The handler function receives a `context` object that exposes the following properties: ``` js { state, // same as store.state, or local state if in modules rootState, // same as store.state, only in modules commit, // same as store.commit dispatch, // same as store.dispatch getters // same as store.getters } ``` [Details](actions.md) - **getters** - type: `{ [key: string]: Function }` Register getters on the store. The getter function receives the following arguments: ``` state, // will be module local state if defined in a module. getters, // same as store.getters rootState // same as store.state ``` Registered getters are exposed on `store.getters`. [Details](getters.md) - **modules** - type: `Object` An object containing sub modules to be merged into the store, in the shape of: ``` js { key: { state, namespaced?, mutations?, actions?, getters?, modules? }, ... } ``` Each module can contain `state` and `mutations` similar to the root options. A module's state will be attached to the store's root state using the module's key. A module's mutations and getters will only receives the module's local state as the first argument instead of the root state, and module actions' `context.state` will also point to the local state. [Details](modules.md) - **plugins** - type: `Array` An array of plugin functions to be applied to the store. The plugin simply receives the store as the only argument and can either listen to mutations (for outbound data persistence, logging, or debugging) or dispatch mutations (for inbound data e.g. websockets or observables). [Details](plugins.md) - **strict** - type: `Boolean` - default: `false` Force the Vuex store into strict mode. In strict mode any mutations to Vuex state outside of mutation handlers will throw an Error. [Details](strict.md) ### Vuex.Store Instance Properties - **state** - type: `Object` The root state. Read only. - **getters** - type: `Object` Exposes registered getters. Read only. ### Vuex.Store Instance Methods - **`commit(type: string, payload?: any) | commit(mutation: Object)`** Commit a mutation. [Details](mutations.md) - **`dispatch(type: string, payload?: any) | dispatch(action: Object)`** Dispatch an action. Returns a Promise that resolves all triggered action handlers. [Details](actions.md) - **`replaceState(state: Object)`** Replace the store's root state. Use this only for state hydration / time-travel purposes. - **`watch(getter: Function, cb: Function, options?: Object)`** Reactively watch a getter function's return value, and call the callback when the value changes. The getter receives the store's state as the only argument. Accepts an optional options object that takes the same options as Vue's `vm.$watch` method. To stop watching, call the returned handle function. - **`subscribe(handler: Function)`** Subscribe to store mutations. The `handler` is called after every mutation and receives the mutation descriptor and post-mutation state as arguments: ``` js store.subscribe((mutation, state) => { console.log(mutation.type) console.log(mutation.payload) }) ``` Most commonly used in plugins. [Details](plugins.md) - **`registerModule(path: string | Array, module: Module)`** Register a dynamic module. [Details](modules.md#dynamic-module-registration) - **`unregisterModule(path: string | Array)`** Unregister a dynamic module. [Details](modules.md#dynamic-module-registration) - **`hotUpdate(newOptions: Object)`** Hot swap new actions and mutations. [Details](hot-reload.md) ### Component Binding Helpers - **`mapState(namespace?: string, map: Array | Object): Object`** Create component computed options that return the sub tree of the Vuex store. [Details](state.md#the-mapstate-helper) The first argument can optionally be a namespace string. [Details](modules.md#binding-helpers-with-namespace) - **`mapGetters(namespace?: string, map: Array | Object): Object`** Create component computed options that return the evaluated value of a getter. [Details](getters.md#the-mapgetters-helper) The first argument can optionally be a namespace string. [Details](modules.md#binding-helpers-with-namespace) - **`mapActions(namespace?: string, map: Array | Object): Object`** Create component methods options that dispatch an action. [Details](actions.md#dispatching-actions-in-components) The first argument can optionally be a namespace string. [Details](modules.md#binding-helpers-with-namespace) - **`mapMutations(namespace?: string, map: Array | Object): Object`** Create component methods options that commit a mutation. [Details](mutations.md#commiting-mutations-in-components) The first argument can optionally be a namespace string. [Details](modules.md#binding-helpers-with-namespace)