import Vuex from 'vuex'
const store = new Vuex.Store({ ...options })
state
Object
The root state object for the Vuex store.
mutations
Object
An object where each entry's key is the mutation name and the value is a mutation handler function. The handler function always receives state
as the first argument, and receives all arguments passed to the dispatch call following that.
modules
Object
An object containing sub modules to be merged into the store, in the shape of:
{
key: {
state,
mutations
},
...
}
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 will only receives the module's own state as the first argument instead of the root state.
plugins
Array<Function>
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).
strict
Boolean
false
Force the Vuex store into strict mode. In strict mode any mutations to Vuex state outside of mutation handlers will throw an Error.
state
Object
The root state. Read only.
Directly dispatch a mutation. This is useful in certain situations are in general you should prefer using actions in application code.
Object-Style Dispatch
requires >=0.6.2
You can also dispatch mutations using objects:
store.dispatch({
type: 'INCREMENT',
payload: 10
})
Replace the store's root state. Use this only for state restoration / time-travel purposes.
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.
Hot swap new actions and mutations. Details
Subscribe to store mutations. The handler
is called after every mutaiton and receives the mutation descriptor and post-mutation state as arguments:
store.subscribe((mutation, state) => {
console.log(mutation.type)
console.log(mutation.payload)
})