4
2
mirror of https://github.com/getbible/app.git synced 2024-06-06 12:30:49 +00:00
app/src/store/store.js

15 lines
252 B
JavaScript
Raw Normal View History

import { createStore } from 'vuex'
import state from './state';
import getters from './getters';
import mutations from './mutations';
import actions from './actions'
export const store = createStore({
state,
getters,
mutations,
actions
})